]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-70388-without-witness.fixed
Rollup merge of #92399 - Veeupup:fix_vec_typo, r=Dylan-DPC
[rust.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(i32);
5
6 fn main() {
7     let Foo(..) = Foo(0); //~ ERROR unexpected `...`
8     let [_, .., _] = [0, 1]; //~ ERROR unexpected `...`
9 }