Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
immutable_var.out
7
lines
·
7
sloc
·
208 bytes
·
c7a6d28e13e6a72ed1fe4b78d1f5c26f7d99990e
Raw
1
vlib/v/checker/tests/immutable_var.vv:3:2: error: `a` is immutable, declare it with `mut` to make it mutable
2
1 | fn main() {
3
2 | a := 1
4
3 | a = 2
5
| ^
6
4 | _ = a
7
5 | }
8