struct Point { x: i64, y: i64, } fn main() -> i64 { let p: Point = Point { x: 10, y: 20 }; print_i64(p.x); print_i64(p.y); return 0; }