aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00142.c
blob: 3a5d80b8c8ad9a8102711889446a7f2fa1687a7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if defined(FOO)
int a;
#elif !defined(FOO) && defined(BAR)
int b;
#elif !defined(FOO) && !defined(BAR)
int c;
#else
int d;
#endif

int
main(void)
{
	return c;
}