aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/checker/tests/mut_args_warning.out
blob: 726f4b8de7cde9bd8329b972e3329c5770c99590 (plain)
1
2
3
4
5
vlib/v/checker/tests/mut_args_warning.vv:1:8: warning: use `mut f Foo` instead of `f mut Foo`
    1 | fn f(x mut []int) { x[0] = 1 }
      |        ~~~
    2 | fn main() {
    3 |     mut x := [0]