ref: 5bfd2bd34f677b9d84103bfa7429e898ef50298d dir: /tests/execute/0154-if-defined/
#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; }