diff options
Diffstat (limited to 'test/CXX/lex/lex.pptoken/p3-0x.cpp')
-rw-r--r-- | test/CXX/lex/lex.pptoken/p3-0x.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/CXX/lex/lex.pptoken/p3-0x.cpp b/test/CXX/lex/lex.pptoken/p3-0x.cpp new file mode 100644 index 0000000..4ae867c --- /dev/null +++ b/test/CXX/lex/lex.pptoken/p3-0x.cpp @@ -0,0 +1,11 @@ +// RUN: %clang_cc1 -fsyntax-only -std=c++0x -verify %s + +int a<::> = { 1, 2, 3 }; +int b = a<:::a<:0:>:>; +bool c = a<:0:><::b; + +template<int &n> void f() {} +template void f<::b>(); + +#define x a<:: ## : b :> +int d = x; // expected-error {{pasting formed ':::', an invalid preprocessing token}} expected-error {{expected unqualified-id}} |