diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/SemaCXX/decl-expr-ambiguity.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test/SemaCXX/decl-expr-ambiguity.cpp b/test/SemaCXX/decl-expr-ambiguity.cpp new file mode 100644 index 0000000000..b9e824dff0 --- /dev/null +++ b/test/SemaCXX/decl-expr-ambiguity.cpp @@ -0,0 +1,20 @@ +// RUN: clang -fsyntax-only -verify %s + +void f() { + int a; + struct S { int m; }; + typedef S *T; + + // Expressions. + T(a)->m = 7; + int(a)++; // expected-error {{invalid lvalue in increment/decrement expression}} + __extension__ int(a)++; // expected-error {{invalid lvalue in increment/decrement expression}} + typeof(int)(a,5)<<a; // expected-error {{function-style cast to a builtin type can only take one argument}} + void(a), ++a; // expected-warning {{statement was disambiguated as expression}} expected-warning {{expression result unused}} + + // Declarations. + T(*d)(int(p)); // expected-warning {{statement was disambiguated as declaration}} expected-error {{previous definition is here}} + T(d)[5]; // expected-warning {{statement was disambiguated as declaration}} expected-error {{redefinition of 'd'}} + typeof(int[])(f) = { 1, 2 }; // expected-warning {{statement was disambiguated as declaration}} + void(b)(int); +} |