summaryrefslogtreecommitdiffstats
path: root/tests/preprocessor/preproc-concat-1.slang
blob: 44d6c1d6135281bcbedab4eefc84a9763f39b0bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//DIAGNOSTIC_TEST:SIMPLE:-E

#define CONCAT(a, b) a ## b

// Correct output AB;
// Old Slang output
// ab;

#define A a
#define B b

CONCAT(A, B);