rust/tests/ui/lint/unused/issue-81314-unused-span-ident.rs

13 lines
290 B
Rust
Raw Normal View History

//@ run-rustfix
2021-02-28 20:03:44 +00:00
// Regression test for #81314: Unused variable lint should
// span only the identifier and not the rest of the pattern
#![deny(unused)]
fn main() {
let [rest @ ..] = [1, 2, 3]; //~ ERROR unused variable
}
pub fn foo([rest @ ..]: &[i32]) { //~ ERROR unused variable
}