class Point { x: f64; y: f64; } fun test() -> f64 { let pt = new Point { x: 7, y: 23 }; let z = pt.x; z } // @ignore // @no-errors