blob: 66f065bf35caa4bee5083aadd1c4afd46146b9c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//TEST:SIMPLE:
// Check #if expression is ignored if outer #if/#ifndef means it is skipped
#if 0
BadThing thatWontCompile;
#if a + b == 27
BadThing thatWontCompile;
#endif
BadThing thatWontCompile;
#endif
#ifdef SOMETHING_SILLY
BadThing thatWontCompile;
#if SOMETHING_SILLY
BadThing thatWontCompile;
#endif
#endif
|