v2 / vlib / v / fmt / tests / void_option_keep.vv
7 lines · 6 sloc · 81 bytes · 90941b3b1f5513cef7f913bc54f1b5a2af0c8c7a
Raw
1fn tt() ? {
2 return error('error')
3}
4
5fn main() {
6 tt() or { panic('${err}') }
7}
8