rust/src/test/ui/error-codes/E0027.rs
2018-12-25 21:08:33 -07:00

13 lines
224 B
Rust

struct Dog {
name: String,
age: u32,
}
fn main() {
let d = Dog { name: "Rusty".to_string(), age: 8 };
match d {
Dog { age: x } => {}
//~^ ERROR pattern does not mention field `name`
}
}