1 2 3 4 5 6 7 8 9
fn main() { struct foo { a: i32, b: f32, }; let a; a = foo { a: 123, b: 456f32 }; }