blob: e7993cc0a3517ad9b54e2b0bbd25ca2da962f0d4 [file] [log] [blame]
// RUN: %clang_cc1 -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);