summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/unused/issue-81314-unused-span-ident.rs
blob: 78296f4258d73c6f9756f2cb4496c1056fcefffc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// run-rustfix
// 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
}