summaryrefslogtreecommitdiffstats
path: root/tests/preprocessor/special-macro-multi-line.slang
blob: b8d12d60189ac0fc006420f13a7a2713ad59a5f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//DIAGNOSTIC_TEST:SIMPLE:-E

// Output here varies by compiler. Gcc makes the line the one with M. Clang makes it the end bracket.

#define M(ARG) __LINE__


int x = M
(
ignored
)
;