summaryrefslogtreecommitdiffstats
path: root/tests/preprocessor/error.slang
blob: 3e72137de30f3e4d1cf9ca95325c5cd13baf0a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//TEST:SIMPLE:

// #error support

#define FIRST 0

#if FIRST
#error Not this one!
#else

#error This isn't valid!

#endif