Files
c3c/test/test_suite/errors/lone_try.c3
Christoffer Lerno 8b0df0ee11 try? / catch?
2023-03-17 22:49:48 +01:00

12 lines
106 B
Plaintext

module test;
fn void main()
{
try a; // #error: try?
}
fn void hello()
{
catch a; // #error: catch?
}