mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
14 lines
147 B
C
14 lines
147 B
C
module test;
|
|
import std::io;
|
|
|
|
fn void! main()
|
|
{
|
|
int a;
|
|
switch (a)
|
|
{
|
|
case 1:
|
|
nextcase 0; // #error: There is no 'case 0'
|
|
default:
|
|
|
|
}
|
|
} |