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

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

15 lines
251 B
Rust
Raw Normal View History

2018-02-07 19:35:35 -08:00
// compile-flags: -Z teach
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
}
}