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