fn main() { struct foo { a: i32, b: f32, }; let a; a = foo { a: 123, b: 456f32 }; }