1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/checker/tests/immutable_array_struct_shift.vv
2020-05-27 19:12:34 +03:00

10 lines
75 B
V

struct Aaa {
pub mut:
i []int
}
fn main() {
a := []Aaa{}
a[0].i << 3
}