v/vlib/v/parser/tests/struct_field_mut_type_err.out

8 lines
198 B
Plaintext

vlib/v/parser/tests/struct_field_mut_type_err.vv:3:6: error: cannot use `mut` on struct field type
1 | struct Foo {
2 | mut:
3 | foo mut string
| ~~~
4 | }
5 |