v2 / vlib / v / checker / tests / assign_const_ptr_int_literal_err.vv
6 lines · 5 sloc · 45 bytes · 4908ec57e206d21e8204fff977a82f1be7d7391a
Raw
1const a = 3
2
3fn main() {
4 b := &a
5 dump(b)
6}
7