Files
c3c/test/test_suite2/compile_time/ct_if_fails.c3
2022-09-30 08:44:28 +02:00

29 lines
266 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;