summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-70388-recover-dotdotdot-rest-pat.rs
blob: ca8abd78c47ac0b7a535887642e07d65f79bb813 (plain)
1
2
3
4
5
6
7
struct Foo(i32);

fn main() {
    let Foo(...) = Foo(0); //~ ERROR unexpected `...`
    let [_, ..., _] = [0, 1]; //~ ERROR unexpected `...`
    let _recovery_witness: () = 0; //~ ERROR mismatched types
}