//ww:run-exit 34 package main; type pt = struct { x: u64, y: u64 }; type qt = pt; export fn main() i32 = { let a: [3]pt; a[1] = qt { x = 3u64, y = 4u64 }; return (a[1].x * 10u64 + a[1].y): i32; };