//ww:run-exit 16 package main; type pt = struct { a: int, b: int }; let g = pt { a = 7, b = 9 }; export fn main() i32 = { return (g.a + g.b): i32; };