Files
c3c/test/test_suite/errors/error_else.c3t
Christoffer Lerno cdabe8fd9e - Create optional with ~ instead of ?. return io::EOF?; becomes return io::EOF~.
- Deprecated use of `?` to create optional.
2026-01-20 16:10:28 +01:00

20 lines
156 B
Plaintext

module foo;
faultdef TEST;
module bar;
import foo;
fn int? abc()
{
return foo::TEST~;
}
module baz;
import foo;
fn int? abc()
{
return foo::TEST~;
}