Files
c3c/test/test_suite/errors/switch_default_catch.c3
2025-01-29 15:29:09 +01:00

10 lines
108 B
Plaintext

fn void main()
{
int! x;
if (catch err = x)
{
default: // #warning: 'if-catch'
return;
}
return;
}