Files
c3c/test/test_suite7/errors/no_common.c3
2025-02-23 13:53:04 +01:00

13 lines
126 B
Plaintext

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