mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
29 lines
246 B
C
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
|