rust/tests/ui/error-codes/E0026-teach.rs

15 lines
252 B
Rust

//@ compile-flags: -Z teach
struct Thing {
x: u32,
y: u32
}
fn main() {
let thing = Thing { x: 0, y: 0 };
match thing {
Thing { x, y, z } => {}
//~^ ERROR struct `Thing` does not have a field named `z` [E0026]
}
}