ref: dbb8b774527a030a3b83b8a422234755fc928ed3
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;
}