mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
222 B
Plaintext
12 lines
222 B
Plaintext
module foo;
|
|
|
|
fn void test()
|
|
{
|
|
int i;
|
|
switch (i)
|
|
{
|
|
case 15..13: // #error: The range is not valid because the first value (15) is greater than the second (13)
|
|
i++;
|
|
return;
|
|
}
|
|
} |