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

// GCC: <source>:1:9: error: '##' cannot appear at either end of a macro expansion. 
// Clang: <source>:1:21: error: '##' cannot appear at start of macro expansion
// Old Slang outputs Hello ## There;
#define POUND_POUND ##

Hello POUND_POUND There;