1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/checker/tests/array_delete_imut_err.out

8 lines
220 B
Plaintext

vlib/v/checker/tests/array_delete_imut_err.vv:5:2: error: `a` is immutable, declare it with `mut` to make it mutable
3 | println(a)
4 |
5 | a.delete(1)
| ^
6 | println(a)
7 | }