rust/tests/ui/parser/issues/issue-70388-recover-dotdotdot-rest-pat.rs
2023-01-11 09:32:08 +00:00

8 lines
205 B
Rust

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