From 7e6c511e065ebdaf43698f22d7515bc7e2792551 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 26 Mar 2021 15:02:30 +0200 Subject: [PATCH] ci: fix the content of mut_int.out --- vlib/v/checker/tests/mut_int.out | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/checker/tests/mut_int.out b/vlib/v/checker/tests/mut_int.out index fa3c6cf004..20a092caa8 100644 --- a/vlib/v/checker/tests/mut_int.out +++ b/vlib/v/checker/tests/mut_int.out @@ -1,4 +1,4 @@ -vlib/v/checker/tests/mut_int.vv:1:14: error: mutable arguments are only allowed for arrays, interfaces, maps, pointers and structs +vlib/v/checker/tests/mut_int.vv:1:14: error: mutable arguments are only allowed for arrays, interfaces, maps, pointers, structs or their aliases return values instead: `fn foo(mut n int) {` => `fn foo(n int) int {` 1 | fn foo(mut x int) { | ~~~