mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 02:30:12 +01:00
18 lines
177 B
C
18 lines
177 B
C
|
|
#if defined(foo)
|
||
|
|
failure_1
|
||
|
|
#else
|
||
|
|
success_1
|
||
|
|
#endif
|
||
|
|
#define foo
|
||
|
|
#if defined ( foo )
|
||
|
|
success_2
|
||
|
|
#else
|
||
|
|
failure_2
|
||
|
|
#endif
|
||
|
|
#undef foo
|
||
|
|
#if defined (foo)
|
||
|
|
failure_3
|
||
|
|
#else
|
||
|
|
success_3
|
||
|
|
#endif
|