Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
223 B
Rust
Raw Normal View History

2016-05-12 15:17:02 +02:00
struct Thing {
x: u32,
y: u32
}
fn main() {
let thing = Thing { x: 0, y: 0 };
match thing {
2016-08-08 20:58:21 +02:00
Thing { x, y, z } => {}
//~^ ERROR struct `Thing` does not have a field named `z` [E0026]
2016-05-12 15:17:02 +02:00
}
}