mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
106 B
C
12 lines
106 B
C
module test;
|
|
|
|
fn void main()
|
|
{
|
|
try a; // #error: try?
|
|
}
|
|
|
|
fn void hello()
|
|
{
|
|
catch a; // #error: catch?
|
|
}
|