1 2 3 4 5 6 7 8 9 10
struct Box { mut: num int } mut box := Box { num: 10 } a := [&box]! mut b := a b[0].num = 0 println(a)