mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
10 lines
259 B
Rust
10 lines
259 B
Rust
// run-rustfix
|
|
// This is for checking if we can apply suggestions as-is.
|
|
|
|
pub struct Foo(#[allow(unused_tuple_struct_fields)] i32);
|
|
|
|
fn main() {
|
|
let Foo(...) = Foo(0); //~ ERROR unexpected `...`
|
|
let [_, ..., _] = [0, 1]; //~ ERROR unexpected `...`
|
|
}
|