| 1 | vlib/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 |
| 8 | vlib/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 |