diff options
Diffstat (limited to 'test/SemaCXX/pr13394-crash-on-invalid.cpp')
-rw-r--r-- | test/SemaCXX/pr13394-crash-on-invalid.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/SemaCXX/pr13394-crash-on-invalid.cpp b/test/SemaCXX/pr13394-crash-on-invalid.cpp new file mode 100644 index 0000000..413c52a --- /dev/null +++ b/test/SemaCXX/pr13394-crash-on-invalid.cpp @@ -0,0 +1,16 @@ +// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s +// Don't crash (PR13394). + +namespace stretch_v1 { + struct closure_t { + const stretch_v1::ops_t* d_methods; // expected-error {{no type named 'ops_t' in namespace 'stretch_v1'}} + }; +} +namespace gatekeeper_v1 { + namespace gatekeeper_factory_v1 { + struct closure_t { // expected-note {{'closure_t' declared here}} + gatekeeper_v1::closure_t* create(); // expected-error {{no type named 'closure_t' in namespace 'gatekeeper_v1'; did you mean 'closure_t'?}} + }; + } + gatekeeper_v1::closure_t *x; // expected-error {{no type named 'closure_t' in namespace 'gatekeeper_v1}} +} |