v2 / vlib / v / checker / tests / as_cast_option_result_unhandled_err.vv
12 lines · 9 sloc · 168 bytes · 7f5f69a78aabe95e8f15a436a6be3058efba29d7
Raw
1type Sum = int | string
2
3fn ret_sum_result() !Sum {
4 return 0
5}
6
7fn ret_sum_option() ?Sum {
8 return '0'
9}
10
11_ := ret_sum_result() as int
12_ := ret_sum_option() as string
13