]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/issues/issue-70388-without-witness.fixed
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / parser / issues / issue-70388-without-witness.fixed
1 // run-rustfix
2 // This is for checking if we can apply suggestions as-is.
3
4 pub struct Foo(#[allow(unused_tuple_struct_fields)] i32);
5
6 fn main() {
7 let Foo(..) = Foo(0); //~ ERROR unexpected `...`
8 let [_, .., _] = [0, 1]; //~ ERROR unexpected `...`
9 }