v2 / vlib / v / checker / tests / struct_ptr_cast_zero_err.vv
9 lines · 6 sloc · 88 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1struct Context {}
2
3const a = 0
4
5b := 0
6
7_ = &Context(0)
8_ = &Context(a)
9_ = &Context(b)
10