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