//ww:run-exit 42 package main; type point = struct { x: i32, y: i32 }; let p: point; fn main() i32 = { p.x = 7; p.y = 35; return p.x + p.y; };