mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
14 lines
251 B
Rust
14 lines
251 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]
|
|
}
|
|
}
|