Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
method_call_arg_no_mut_err.out
6
lines
·
6
sloc
·
267 bytes
·
014f44eab3de6d188d5f4f22677f9608308d1ae5
Raw
1
vlib/v/checker/tests/method_call_arg_no_mut_err.vv:25:14: error: method `alarm_fkt` parameter 1 is `mut`, so use `mut last` instead
2
23 | c.arr << Alarm{}
3
24 | mut last := c.arr.last()
4
25 | c.alarm_fkt(last)
5
| ~~~~
6
26 | }
7