mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
fn void test1()
|
|
{
|
|
int a = (i ? 1 : 1); // #error: 'i' could not be found, did you spell it right
|
|
}
|
|
|
|
fn void test2()
|
|
{
|
|
int a = (1 ? i : 2); // #error: 'i' could not be found, did you spell it right
|
|
}
|
|
|
|
fn void test3()
|
|
{
|
|
int a = (1 ? 2 : i); // #error: 'i' could not be found, did you spell it right
|
|
}
|