llvm-project/clang/test/Preprocessor/macro_paste_hashhash.c

8 lines
183 B
C
Raw Normal View History

// RUN: clang-cc -E %s | grep '^"x ## y";$'
2006-07-19 16:01:28 +08:00
#define hash_hash # ## #
#define mkstr(a) # a
#define in_between(a) mkstr(a)
#define join(c, d) in_between(c hash_hash d)
join(x, y);