summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-15260.rs
blob: 64fc3df3d23f1cb6264f2128d61a0739b3f5ae19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
struct Foo {
    a: usize,
}

fn main() {
    let Foo {
        a: _,
        a: _
        //~^ ERROR field `a` bound multiple times in the pattern
    } = Foo { a: 29 };

    let Foo {
        a,
        a: _
        //~^ ERROR field `a` bound multiple times in the pattern
    } = Foo { a: 29 };

    let Foo {
        a,
        a: _,
        //~^ ERROR field `a` bound multiple times in the pattern
        a: x
        //~^ ERROR field `a` bound multiple times in the pattern
    } = Foo { a: 29 };
}