Files
c3c/test/test_suite/compile_time/compile_time_with_break.c3t
2025-07-03 13:11:12 +02:00

17 lines
199 B
Plaintext

enum Test
{
FOO,
}
fn int main()
{
int v;
$switch (Test.FOO):
$case FOO:
if START: (v < 5)
{
if (v > 3) break START;
}
$endswitch
return 0;
}