rust/tests/ui/parser/issues/issue-70388-without-witness.fixed

10 lines
257 B
Rust
Raw Normal View History

2020-07-02 00:32:12 -05:00
// run-rustfix
// This is for checking if we can apply suggestions as-is.
2022-07-25 15:36:03 -05:00
pub struct Foo(#[allow(unused_tuple_struct_fields)] i32);
2020-07-02 00:32:12 -05:00
fn main() {
let Foo(..) = Foo(0); //~ ERROR unexpected `...`
let [_, .., _] = [0, 1]; //~ ERROR unexpected `...`
}