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

8 lines
72 B
V
Raw Normal View History

2020-05-23 06:51:15 +00:00
fn ret_zero() int {
return 0
}
fn main() {
_ = ret_zero() or { 1 }
2020-05-23 06:51:15 +00:00
}