vxx2 / vlib / v / checker / tests / struct_pub_field.vv
10 lines · 9 sloc · 67 bytes · 670820cc596c2ec93561dd01e615821b69086f8d
Raw
1struct Foo {
2 i int
3}
4
5fn main() {
6 a := Foo{
7 i: 1
8 }
9 a.i = 2
10}
11