v/vlib/v/parser/tests/struct_field_mut_type_err.vv

10 lines
75 B
V

struct Foo {
mut:
foo mut string
}
fn main() {
f := Foo{}
println(f)
}