vxx2 / vlib / v / checker / tests / ref_to_non_ref_err.out
5 lines · 5 sloc · 221 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1vlib/v/checker/tests/ref_to_non_ref_err.vv:12:17: error: cannot use `&Foo` as `Foo` in argument 1 to `.index()`
2 10 | }
3 11 |
4 12 | dump(list.index(unsafe { &list[1] }))
5 | ~~~~~~~~~~~~~~~~~~~
6