summaryrefslogtreecommitdiffstats
path: root/test/Preprocessor/macro_paste_empty.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Preprocessor/macro_paste_empty.c')
-rw-r--r--test/Preprocessor/macro_paste_empty.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Preprocessor/macro_paste_empty.c b/test/Preprocessor/macro_paste_empty.c
new file mode 100644
index 0000000..75504bc
--- /dev/null
+++ b/test/Preprocessor/macro_paste_empty.c
@@ -0,0 +1,13 @@
+// RUN: clang-cc -E %s | grep 'a:Y' &&
+// RUN: clang-cc -E %s | grep 'b:Y' &&
+// RUN: clang-cc -E %s | grep 'c:YY'
+
+#define FOO(X) X ## Y
+a:FOO()
+
+#define FOO2(X) Y ## X
+b:FOO2()
+
+#define FOO3(X) X ## Y ## X ## Y ## X ## X
+c:FOO3()
+
OpenPOWER on IntegriCloud