summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-49257.rs
blob: a7fa19d52fd09d33619b0062d22da2e777565872 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Test for #49257:
// emits good diagnostics for `..` pattern fragments not in the last position.

#![allow(unused)]

struct Point { x: u8, y: u8 }

fn main() {
    let p = Point { x: 0, y: 0 };
    let Point { .., y, } = p; //~ ERROR expected `}`, found `,`
    let Point { .., y } = p; //~ ERROR expected `}`, found `,`
    let Point { .., } = p; //~ ERROR expected `}`, found `,`
    let Point { .. } = p;
}