rust/src/test/ui/error-codes/E0027-teach.rs

16 lines
252 B
Rust
Raw Normal View History

2018-02-07 19:35:35 -08:00
// compile-flags: -Z teach
2016-05-17 15:01:31 +02:00
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`
2016-05-17 15:01:31 +02:00
}
}