//ww:run-exit 21 package main; type pt = struct { x: i32, y: i32 }; fn main() i32 = { let o: pt; let p: *i32 = &o.x; *p = 21; return o.x; };