blob: 1d60f8948ab15b42a20a2182e7196db2ab8b3d8f [file] [log] [blame]
struct Simba {
mother: u32,
}
fn main() {
let s = Simba { mother: 1, father: 0 };
//~^ ERROR E0560
}