summaryrefslogtreecommitdiff
path: root/support/regression/qct/0070-cppif.c
blob: e4eef1f330b5e77b06eb79f22d46560d1e83f705 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#if 1
int x = 0;
#endif

#if 0
int x = 1;
#if 1
 X
#endif
#ifndef AAA
 X
#endif
#endif

int main()
{
	return x;
}