struct point { i32 x, i32 y } i32 main() { point result = .{ x = 2, y = 1 }; return (result.y) + 2; }