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

#define A a
#define B b
#define OBJ A ## B

// Should output AB 
// Old Slang outputs ab

OBJ