mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
29 lines
257 B
C
29 lines
257 B
C
int x;
|
|
$if (x > 0):
|
|
$endif;
|
|
|
|
$if (0):
|
|
$assert(false);
|
|
$endif;
|
|
|
|
$if (1):
|
|
$else:
|
|
$endif;
|
|
|
|
$if (1):
|
|
$else:
|
|
$else: // #error: Expected a top level declaration here.
|
|
$endif;
|
|
|
|
|
|
$if (1):
|
|
$elif (2):
|
|
$else:
|
|
$endif;
|
|
|
|
$if (1):
|
|
$elif (2):
|
|
$elif (3):
|
|
$else:
|
|
$endif;
|