summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/token-paste-location.slang
blob: ded5892f753a04998fa1c8e56b9658f1ba19ca00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//DIAGNOSTIC_TEST:SIMPLE:


#define SOME +
#define THING +

#define A SOME
#define B THING

#define PASTE2(x, y) x##y
#define PASTE(x, y) PASTE2(x, y)


PASTE(A, B)