rust/tests/ui/error-codes/E0560.rs

9 lines
114 B
Rust

struct Simba {
mother: u32,
}
fn main() {
let s = Simba { mother: 1, father: 0 };
//~^ ERROR E0560
}