vxx2 / vlib / v / checker / tests / pointer_cast_number_outside_unsafe_err.vv
10 lines · 8 sloc · 112 bytes · 6c9b3c8ebf7b7478e66c27ca67dc44b86f7f2f08
Raw
1const zero = 0
2const one = 1
3
4value := 1
5
6_ = &int(0)
7_ = &int(zero)
8_ = &int(one)
9_ = &int(value)
10_ = &&int(0)
11