v2 / vlib / v / checker / tests / c_struct_cast.out
6 lines · 6 sloc · 180 bytes · 99216929d626db9feda804dec8ab0a9ce05c0d3a
Raw
1vlib/v/checker/tests/c_struct_cast.vv:18:7: error: cannot cast type `Vector3` to `int`
2 16 | }
3 17 | dump(v)
4 18 | dump(int(v))
5 | ~~~~~~
6 19 | }
7