summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs/struct-pat-derived-error.rs
blob: f49a8ff8bdda6bbe7e7f0da7b0326fd440521940 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct A {
    b: usize,
    c: usize
}

impl A {
    fn foo(&self) {
        let A { x, y } = self.d; //~ ERROR no field `d` on type `&A`
        //~^ ERROR struct `A` does not have fields named `x`, `y`
        //~| ERROR pattern does not mention fields `b`, `c`
    }
}

fn main() {}