Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
ptr_assign.out
6
lines
·
6
sloc
·
186 bytes
·
c7a6d28e13e6a72ed1fe4b78d1f5c26f7d99990e
Raw
1
vlib/v/checker/tests/ptr_assign.vv:3:5: error: cannot assign to `p`: expected `&int`, not `int literal`
2
1 | mut v := 43
3
2 | mut p := &v
4
3 | p = 4
5
| ^
6
4 | _ = p
7