vxx2 / vlib / v / checker / tests / infix_is_unknown_module_no_panic.vv
12 lines · 11 sloc · 122 bytes · 00b68174eef6ec19c8bf5e09ac92db91cb7e8d23
Raw
1fn sample() !int {
2 return error('x')
3}
4
5fn main() {
6 _ := sample() or {
7 if err is io.Eof {
8 return
9 }
10 return
11 }
12}
13