Skip to content

Commit 5b2ade1

Browse files
committed
Fix #117284, Skip unused variables lint for args in macro
1 parent 91bbdd9 commit 5b2ade1

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

compiler/rustc_passes/src/liveness.rs

+9-1
Original file line numberDiff line numberDiff line change
@@ -1579,8 +1579,16 @@ impl<'tcx> Liveness<'_, 'tcx> {
15791579
pat: &hir::Pat<'_>,
15801580
opt_body: Option<&hir::Body<'_>>,
15811581
) {
1582-
let first_hir_id = hir_ids_and_spans[0].0;
1582+
// #117284, when `pat_span` and `ident_span` have different contexts
1583+
// we can't provide a good suggestion.
1584+
if hir_ids_and_spans
1585+
.iter()
1586+
.any(|(_, pat_span, ident_span)| pat_span.ctxt() != ident_span.ctxt())
1587+
{
1588+
return;
1589+
}
15831590

1591+
let first_hir_id = hir_ids_and_spans[0].0;
15841592
if let Some(name) = self.should_warn(var).filter(|name| name != "self") {
15851593
// annoying: for parameters in funcs like `fn(x: i32)
15861594
// {ret}`, there is only one node, so asking about
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// check-pass
2+
#![deny(unused_variables)]
3+
macro_rules! make_var {
4+
($struct:ident, $var:ident) => {
5+
let $var = $struct.$var;
6+
};
7+
}
8+
9+
#[allow(unused)]
10+
struct MyStruct {
11+
var: i32,
12+
}
13+
14+
fn main() {
15+
let s = MyStruct { var: 42 };
16+
make_var!(s, var);
17+
}

0 commit comments

Comments
 (0)