Files
c3c/test/test_suite/compile_time/ct_if_fails.c3
2023-03-20 01:03:54 +01:00

29 lines
246 B
C

int x;
$if (x > 0)
$endif
$if (0)
$assert(false);
$endif
$if (1)
$else
$endif
$if (1)
$else
$else // #error: Expected the start of a global declaration here
$endif
$if (1)
$elif (2)
$else
$endif
$if (1)
$elif (2)
$elif (3)
$else
$endif