checker: fix mut int test

pull/5190/head
Alexander Medvednikov 2020-06-03 10:45:19 +02:00
parent 888a43a684
commit 00978da2c4
1 changed files with 1 additions and 1 deletions

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 |