v/vlib/v/checker/tests/unexpected_or.vv

8 lines
72 B
V

fn ret_zero() int {
return 0
}
fn main() {
_ = ret_zero() or { 1 }
}