Skip to content

Commit 75959fb

Browse files
authoredFeb 26, 2021
Rollup merge of #82506 - estebank:unused_variable_lint, r=lcnr
Properly account for non-shorthand pattern field in unused variable lint Fix #82488
2 parents ee4129f + fb24a10 commit 75959fb

File tree

4 files changed

+56
-5
lines changed

4 files changed

+56
-5
lines changed
 

‎compiler/rustc_passes/src/liveness.rs

+10-5
Original file line numberDiff line numberDiff line change
@@ -367,12 +367,17 @@ impl<'tcx> Visitor<'tcx> for IrMaps<'tcx> {
367367
}
368368

369369
fn visit_param(&mut self, param: &'tcx hir::Param<'tcx>) {
370-
let is_shorthand = matches!(param.pat.kind, rustc_hir::PatKind::Struct(..));
371370
param.pat.each_binding(|_bm, hir_id, _x, ident| {
372-
let var = if is_shorthand {
373-
Local(LocalInfo { id: hir_id, name: ident.name, is_shorthand: true })
374-
} else {
375-
Param(hir_id, ident.name)
371+
let var = match param.pat.kind {
372+
rustc_hir::PatKind::Struct(_, fields, _) => Local(LocalInfo {
373+
id: hir_id,
374+
name: ident.name,
375+
is_shorthand: fields
376+
.iter()
377+
.find(|f| f.ident == ident)
378+
.map_or(false, |f| f.is_shorthand),
379+
}),
380+
_ => Param(hir_id, ident.name),
376381
};
377382
self.add_variable(var);
378383
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// run-rustfix
2+
#![deny(unused_variables)]
3+
4+
struct Point {
5+
x: u32,
6+
y: u32
7+
}
8+
9+
fn process_point(Point { x, y: _renamed }: Point) {
10+
//~^ ERROR unused variable: `renamed`
11+
let _ = x;
12+
}
13+
14+
fn main() {
15+
process_point(Point { x: 0, y: 0 });
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// run-rustfix
2+
#![deny(unused_variables)]
3+
4+
struct Point {
5+
x: u32,
6+
y: u32
7+
}
8+
9+
fn process_point(Point { x, y: renamed }: Point) {
10+
//~^ ERROR unused variable: `renamed`
11+
let _ = x;
12+
}
13+
14+
fn main() {
15+
process_point(Point { x: 0, y: 0 });
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error: unused variable: `renamed`
2+
--> $DIR/unused_variables-issue-82488.rs:9:32
3+
|
4+
LL | fn process_point(Point { x, y: renamed }: Point) {
5+
| ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_renamed`
6+
|
7+
note: the lint level is defined here
8+
--> $DIR/unused_variables-issue-82488.rs:2:9
9+
|
10+
LL | #![deny(unused_variables)]
11+
| ^^^^^^^^^^^^^^^^
12+
13+
error: aborting due to previous error
14+

0 commit comments

Comments
 (0)