2021-07-10 17:54:48 +00:00
|
|
|
// Regression test for #87017.
|
|
|
|
|
2021-08-02 16:35:49 +00:00
|
|
|
// run-rustfix
|
|
|
|
|
2021-07-10 17:54:48 +00:00
|
|
|
fn main() {
|
|
|
|
fn foo() -> Vec<i32> { vec![1, 2, 3] }
|
|
|
|
|
|
|
|
if let [_, _, _] = foo() {}
|
|
|
|
//~^ ERROR: expected an array or slice
|
|
|
|
//~| HELP: consider slicing here
|
2021-08-02 16:35:49 +00:00
|
|
|
|
2021-07-10 17:54:48 +00:00
|
|
|
if let [] = &foo() {}
|
|
|
|
//~^ ERROR: expected an array or slice
|
|
|
|
//~| HELP: consider slicing here
|
|
|
|
|
2021-08-02 16:35:49 +00:00
|
|
|
if let [] = foo() {}
|
|
|
|
//~^ ERROR: expected an array or slice
|
|
|
|
//~| HELP: consider slicing here
|
|
|
|
|
2021-07-10 17:54:48 +00:00
|
|
|
let v = vec![];
|
|
|
|
match &v {
|
|
|
|
//~^ HELP: consider slicing here
|
|
|
|
[5] => {}
|
|
|
|
//~^ ERROR: expected an array or slice
|
|
|
|
_ => {}
|
|
|
|
}
|
2022-07-29 06:02:11 +00:00
|
|
|
|
|
|
|
let [..] = vec![1, 2, 3];
|
|
|
|
//~^ ERROR: expected an array or slice
|
|
|
|
//~| HELP: consider slicing here
|
2021-07-10 17:54:48 +00:00
|
|
|
}
|