v2 / vlib / v / checker / tests / cast_to_ref_struct_err.out
7 lines · 7 sloc · 247 bytes · e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1vlib/v/checker/tests/cast_to_ref_struct_err.vv:9:16: error: cannot cast `string` to `&SomeError`
2 7 |
3 8 | fn main() {
4 9 | a := unsafe { &SomeError('yo') }
5 | ~~~~~~~~~~~~~~~~
6 10 | println(a)
7 11 | }
8