ref: e3010307fe5e503097f0c5d3227faea76566e75d
dir: /tests/cc/execute/0154-if-defined.c/
#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;
}