mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 18:18:06 +02:00
This adds a couple of test cases to expand our coverage of invalid #if and being skipped, (either by being nested inside an #if/#elif that evaluates to zero or by being after an #if/#elif that evaluates to non-zero).
5 lines
59 B
C
5 lines
59 B
C
#ifdef UNDEF
|
|
#if UNDEF == 4
|
|
#elif UNDEF == 5
|
|
#endif
|
|
#endif
|