summaryrefslogtreecommitdiff
path: root/clang/test/CXX/lex/lex.literal/lex.ccon
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CXX/lex/lex.literal/lex.ccon')
-rw-r--r--clang/test/CXX/lex/lex.literal/lex.ccon/p1.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/clang/test/CXX/lex/lex.literal/lex.ccon/p1.cpp b/clang/test/CXX/lex/lex.literal/lex.ccon/p1.cpp
new file mode 100644
index 0000000..5342153
--- /dev/null
+++ b/clang/test/CXX/lex/lex.literal/lex.ccon/p1.cpp
@@ -0,0 +1,16 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
+
+// Check types of char literals
+extern char a;
+extern __typeof('a') a;
+extern int b;
+extern __typeof('asdf') b;
+extern wchar_t c;
+extern __typeof(L'a') c;
+#if __cplusplus >= 201103L
+extern char16_t d;
+extern __typeof(u'a') d;
+extern char32_t e;
+extern __typeof(U'a') e;
+#endif