vxx2 / vlib / v / checker / tests / option_receive_ptr_err.out
7 lines · 7 sloc · 303 bytes · b01e091473a13e179d94c78131a065fd551bdb6e
Raw
1vlib/v/checker/tests/option_receive_ptr_err.vv:14:23: error: cannot use `&MyStruct` as `?MyStruct` in argument 1 to `unwrap_option`
2 12 |
3 13 | fn wrap_unwrap_ptr(event_data &MyStruct) int {
4 14 | return unwrap_option(event_data)
5 | ~~~~~~~~~~
6 15 | }
7 16 |
8