vxx2 / vlib / v / checker / tests / immutable_array_struct_shift.vv
9 lines · 8 sloc · 75 bytes · 84edbd83da81429ac7ce8bcfb246dc6b891169ef
Raw
1struct Aaa {
2pub mut:
3 i []int
4}
5
6fn main() {
7 a := []Aaa{}
8 a[0].i << 3
9}
10