mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
9 lines
114 B
Rust
9 lines
114 B
Rust
struct Simba {
|
|
mother: u32,
|
|
}
|
|
|
|
fn main() {
|
|
let s = Simba { mother: 1, father: 0 };
|
|
//~^ ERROR E0560
|
|
}
|