Skip to content

Commit

Permalink
Rollup merge of rust-lang#89473 - FabianWolff:issue-89469, r=joshtrip…
Browse files Browse the repository at this point in the history
…lett

Fix extra `non_snake_case` warning for shorthand field bindings

Fixes rust-lang#89469. The problem is the innermost `if` condition here:
https://github.com/rust-lang/rust/blob/d14731cb3ced8318d7fc83cbe838f0e7f2fb3b40/compiler/rustc_lint/src/nonstandard_style.rs#L435-L452

This code runs for every `PatKind::Binding`, so if a struct has multiple fields, say A and B, and both are bound in a pattern using shorthands, the call to `self.check_snake_case()` will indeed be skipped in the `check_pat()` call for `A`; but when `check_pat()` is called for `B`, the loop will still iterate over `A`, and `field.ident (= A) != ident (= B)` will be true. I have fixed this by only looking at non-shorthand bindings, and only the binding that `check_pat()` was actually called for.
  • Loading branch information
Manishearth committed Oct 5, 2021
2 parents 26c2f32 + 9626f2b commit ef374c3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 6 deletions.
13 changes: 7 additions & 6 deletions compiler/rustc_lint/src/nonstandard_style.rs
Original file line number Diff line number Diff line change
Expand Up @@ -437,12 +437,13 @@ impl<'tcx> LateLintPass<'tcx> for NonSnakeCase {
if let hir::Node::Pat(parent_pat) = cx.tcx.hir().get(cx.tcx.hir().get_parent_node(hid))
{
if let PatKind::Struct(_, field_pats, _) = &parent_pat.kind {
for field in field_pats.iter() {
if field.ident != ident {
// Only check if a new name has been introduced, to avoid warning
// on both the struct definition and this pattern.
self.check_snake_case(cx, "variable", &ident);
}
if field_pats
.iter()
.any(|field| !field.is_shorthand && field.pat.hir_id == p.hir_id)
{
// Only check if a new name has been introduced, to avoid warning
// on both the struct definition and this pattern.
self.check_snake_case(cx, "variable", &ident);
}
return;
}
Expand Down
20 changes: 20 additions & 0 deletions src/test/ui/lint/issue-89469.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// Regression test for #89469, where an extra non_snake_case warning was
// reported for a shorthand field binding.

// check-pass
#![deny(non_snake_case)]

#[allow(non_snake_case)]
struct Entry {
A: u16,
a: u16
}

fn foo() -> Entry {todo!()}

pub fn f() {
let Entry { A, a } = foo();
let _ = (A, a);
}

fn main() {}

0 comments on commit ef374c3

Please sign in to comment.