Files
c3c/test/test_suite/errors/no_common.c3

13 lines
126 B
C

fn int! abc()
{
return 1;
}
macro test()
{
return @catch(abc())?;
}
fn void main()
{
test() ?? 2; // No longer an error!
}