summaryrefslogtreecommitdiff
path: root/test/CXX/lex
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2011-04-14 18:36:27 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2011-04-14 18:36:27 +0000
commit87a1e19735a27d84edc2ac1331c040e2fb4c3b1a (patch)
tree0f3de2459798dba27e68cad40f261c0d22e6af0f /test/CXX/lex
parent8a9013d24864272cf5b18c908a267bd7a2bda4c4 (diff)
downloadclang-87a1e19735a27d84edc2ac1331c040e2fb4c3b1a.tar.gz
Implement C++0x [lex.pptoken]p3's handling of <::.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@129525 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CXX/lex')
-rw-r--r--test/CXX/lex/lex.pptoken/p3-0x.cpp11
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 0000000000..4ae867c209
--- /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}}