Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
immutable_arg.out
6
lines
·
6
sloc
·
196 bytes
·
0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1
vlib/v/checker/tests/immutable_arg.vv:15:8: error: `a` is immutable, declare it with `mut` to make it mutable
2
13 | e: 2
3
14 | }
4
15 | f(mut a)
5
| ^
6
16 | }
7