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
|
|
}
|