diff options
Diffstat (limited to 'clang/test/Preprocessor/macro_paste_simple.c')
-rw-r--r-- | clang/test/Preprocessor/macro_paste_simple.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/macro_paste_simple.c b/clang/test/Preprocessor/macro_paste_simple.c new file mode 100644 index 0000000..0e62ba4 --- /dev/null +++ b/clang/test/Preprocessor/macro_paste_simple.c @@ -0,0 +1,14 @@ +// RUN: %clang_cc1 %s -E | FileCheck %s + +#define FOO bar ## baz ## 123 + +// CHECK: A: barbaz123 +A: FOO + +// PR9981 +#define M1(A) A +#define M2(X) X +B: M1(M2(##)) + +// CHECK: B: ## + |