v4 / vlib / v / checker / tests / option_in_operator_err.out
13 lines · 13 sloc · 514 bytes · 3ef219a7c65b2025588929c6407bd5832aebccfd
Raw
1vlib/v/checker/tests/option_in_operator_err.vv:19:11: error: unwrapped Option cannot be used with `in`
2 17 |
3 18 | // Optional struct field with map
4 19 | _ = item.owner_id in m
5 | ~~~~~~~~
6 20 |
7 21 | // Optional function return with array
8vlib/v/checker/tests/option_in_operator_err.vv:22:6: error: unwrapped Option cannot be used with `in`
9 20 |
10 21 | // Optional function return with array
11 22 | _ = get_opt() in arr
12 | ~~~~~~~~~
13 23 | }
14