vxx2 / vlib / v / checker / tests / voidptr_cast_to_struct_err.out
7 lines · 7 sloc · 231 bytes · 1c7df29bedebe72edd43e2ffc84dad91b98eb58b
Raw
1vlib/v/checker/tests/voidptr_cast_to_struct_err.vv:4:7: error: cannot cast `voidptr` to struct
2 2 |
3 3 | fn main() {
4 4 | a := Foo(unsafe { nil })
5 | ~~~~~~~~~~~~~~~~~~~
6 5 | println(a)
7 6 | }
8