mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
11 lines
116 B
Plaintext
11 lines
116 B
Plaintext
fn int main()
|
|
{
|
|
int a;
|
|
switch (a)
|
|
{
|
|
case 1: // #error: Fallthrough cases
|
|
// ...
|
|
case 2:
|
|
}
|
|
return 0;
|
|
} |