Files
doslang-mirror/fec/tests/optional/okdefl.fe
T

15 lines
131 B
Plaintext

unit okdefl;
error E {
Bad = 1,
}
fn leaf() -> E!i32 {
return E.Bad;
}
fn top() -> i32 {
return leaf() catch 11;
}