Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
array_delete_imut_err.out
7
lines
·
7
sloc
·
220 bytes
·
063dfa0ab9ce5412b85eb5283734ed3c64669d76
Raw
1
vlib/v/checker/tests/array_delete_imut_err.vv:5:2: error: `a` is immutable, declare it with `mut` to make it mutable
2
3 | println(a)
3
4 |
4
5 | a.delete(1)
5
| ^
6
6 | println(a)
7
7 | }
8