v/vlib/v/fmt/tests/star__amp_int__cast_keep.vv

6 lines
84 B
V

fn main() {
body := [1, 2, 3]
size := *&int(body.data)
eprintln('size: $size')
}