minix/external/bsd/llvm/dist/clang/test/Preprocessor/macro_paste_hard.c
Lionel Sambuc f4a2713ac8 Importing netbsd clang -- pristine
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
2014-07-28 17:05:57 +02:00

17 lines
354 B
C

// RUN: %clang_cc1 -E %s | grep '1: aaab 2'
// RUN: %clang_cc1 -E %s | grep '2: 2 baaa'
// RUN: %clang_cc1 -E %s | grep '3: 2 xx'
#define a(n) aaa ## n
#define b 2
1: a(b b) // aaab 2 2 gets expanded, not b.
#undef a
#undef b
#define a(n) n ## aaa
#define b 2
2: a(b b) // 2 baaa 2 gets expanded, not b.
#define baaa xx
3: a(b b) // 2 xx