]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-70388-without-witness.fixed
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / 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 }