v2 / vlib / v / tests / options / option_or_expr_dump_test.v
8 lines · 7 sloc · 86 bytes · 15e0802e8873c106731958ba4c4030d773cf475c
Raw
1fn f() ? {
2 println('hello')
3 return none
4}
5
6fn test_main() {
7 f() or { dump(err) }
8}
9