14 lines
131 B
Plaintext
14 lines
131 B
Plaintext
unit okdeflt;
|
|
|
|
error E {
|
|
Bad = 1,
|
|
}
|
|
|
|
fn leaf() -> E!i32 {
|
|
return E.Bad;
|
|
}
|
|
|
|
fn top() -> i32 {
|
|
return leaf() catch 11;
|
|
}
|