зеркало из https://github.com/microsoft/clang-1.git
8 строки
180 B
C
8 строки
180 B
C
|
// RUN: clang -E %s | grep '^"x ## y";$'
|
||
|
#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);
|
||
|
|