vxx2 / vlib / v / checker / tests / mismatched_ptr_op_ptr.vv
8 lines · 8 sloc · 82 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn main() {
2 a := '1'
3 unsafe {
4 b := &a
5 println(b + *b)
6 println(b + b)
7 }
8}
9