diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-10-05 00:06:24 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-10-05 00:06:24 +0000 |
commit | 5404a156be26de1c63ca9916187f970848bb4dbb (patch) | |
tree | e972deed236a34ebe1e526b4a5430a96a60a1101 /test | |
parent | d3f779019c1c944e940567ff0f6585eff5534337 (diff) |
Resolve ambiguous C++ statements (C++ 6.8p1).
'ParseTentative.cpp' implements the functionality needed to resolve ambiguous C++ statements, to either a declaration or an expression, by "tentatively parsing" them.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@57084 91177308-0d34-0410-b5e6-96231b3b80d8
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); +} |