vxx2 / vlib / v / checker / tests / immutable_builtin_modify.out
11 lines · 11 sloc · 324 bytes · 173e6a943b43c332c1ead547e165b55ad4b74622
Raw
1vlib/v/checker/tests/immutable_builtin_modify.vv:2:3: error: `string` can not be modified
2 1 | s := ''
3 2 | s.len = 123
4 | ~~~
5 3 | //
6 4 | b := []u8{}
7vlib/v/checker/tests/immutable_builtin_modify.vv:5:3: error: `array` can not be modified
8 3 | //
9 4 | b := []u8{}
10 5 | b.len = 34
11 | ~~~
12