vxx2 / vlib / v / checker / tests / immutable_struct_postfix.vv
10 lines · 9 sloc · 68 bytes · 84edbd83da81429ac7ce8bcfb246dc6b891169ef
Raw
1struct Aaa {
2mut:
3 i int
4}
5
6fn main() {
7 a := Aaa{}
8 a.i++
9 a.i--
10}
11