Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
mut_int.out
6
lines
·
6
sloc
·
286 bytes
·
7e6c511e065ebdaf43698f22d7515bc7e2792551
Raw
1
vlib/v/checker/tests/mut_int.vv:1:14: error: mutable arguments are only allowed for arrays, interfaces, maps, pointers, structs or their aliases
2
return values instead: `fn foo(mut n int) {` => `fn foo(n int) int {`
3
1 | fn foo(mut x int) {
4
| ~~~
5
2 | }
6
3 |
7