]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0027-teach.rs
New upstream version 1.47.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0027-teach.rs
CommitLineData
2c00a5a8
XL
1// compile-flags: -Z teach
2
a7813a04
XL
3struct Dog {
4 name: String,
5 age: u32,
6}
7
8fn main() {
9 let d = Dog { name: "Rusty".to_string(), age: 8 };
10
11 match d {
5bcae85e
SL
12 Dog { age: x } => {}
13 //~^ ERROR pattern does not mention field `name`
54a0048b
SL
14 }
15}