rust/tests/ui/parser/issues/issue-49257.rs
Esteban Küber 855444ec54 mv tests
2023-10-24 21:27:05 +00:00

15 lines
412 B
Rust

// 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;
}