1
0
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:
Alexander Medvednikov 2020-06-03 10:45:19 +02:00
parent 888a43a684
commit 00978da2c4

View File

@ -1,6 +1,6 @@
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 {`
1 | fn foo(mut x int) {
1 | fn foo(mut x int) {
| ^
2 | }
3 |