rustc/tests/ui/error-codes/E0560.rs
2023-07-27 22:48:29 +08:00

9 lines
114 B
Rust

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