summaryrefslogtreecommitdiff
path: root/clang/test/Preprocessor/c99-6_10_3_4_p7.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Preprocessor/c99-6_10_3_4_p7.c')
-rw-r--r--clang/test/Preprocessor/c99-6_10_3_4_p7.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/c99-6_10_3_4_p7.c b/clang/test/Preprocessor/c99-6_10_3_4_p7.c
new file mode 100644
index 0000000..b63209b
--- /dev/null
+++ b/clang/test/Preprocessor/c99-6_10_3_4_p7.c
@@ -0,0 +1,10 @@
+// Example from C99 6.10.3.4p7
+
+// RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
+
+#define t(x,y,z) x ## y ## z
+int j[] = { t(1,2,3), t(,4,5), t(6,,7), t(8,9,),
+t(10,,), t(,11,), t(,,12), t(,,) };
+
+// CHECK: int j[] = { 123, 45, 67, 89,
+// CHECK: 10, 11, 12, };