mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
13 lines
152 B
C
13 lines
152 B
C
errtype MyErr
|
|
{
|
|
FOO
|
|
}
|
|
|
|
fn void test()
|
|
{
|
|
int! x;
|
|
int! d = ($typeof(MyErr.FOO!))(x); // #error: Casting to a failable type is not allowed
|
|
}
|
|
|
|
|