mesa/tests/044-if-1-else.c
Carl Worth b20d33c5c6 Implement #if, #else, #elif, and #endif with tests.
So far the only expression implemented is a single integer literal,
but obviously that's easy to extend. Various things including nesting
are tested here.
2010-05-20 22:27:07 -07:00

7 lines
57 B
C

success_1
#if 1
success_2
#else
failure
#endif
success_3