rustc/tests/ui/error-codes/E0560.rs
2023-08-02 10:33:26 +02:00

9 lines
114 B
Rust

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