mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
checker: fix mut int test
This commit is contained in:
parent
888a43a684
commit
00978da2c4
@ -1,6 +1,6 @@
|
|||||||
vlib/v/checker/tests/mut_int.v:1:12: error: mutable arguments are only allowed for arrays, maps, and structs
|
vlib/v/checker/tests/mut_int.v:1:12: error: mutable arguments are only allowed for arrays, maps, and structs
|
||||||
return values instead: `fn foo(n mut int) {` => `fn foo(n int) int {`
|
return values instead: `fn foo(n mut int) {` => `fn foo(n int) int {`
|
||||||
1 | fn foo(mut x int) {
|
1 | fn foo(mut x int) {
|
||||||
| ^
|
| ^
|
||||||
2 | }
|
2 | }
|
||||||
3 |
|
3 |
|
||||||
|
Loading…
Reference in New Issue
Block a user