struct Foo { a: i32, b: i32, } fn main() -> i32 { // ISSUE: The debugger says b is 1 let foos = [Foo { a: 1, b: 2}]; return 0; }