Merge unused_tuple_struct_fields into dead_code

This implicitly upgrades the lint from `allow` to `warn` and places it
into the `unused` lint group.
This commit is contained in:
Jake Goulding 2023-11-26 14:48:34 -05:00
parent 2f6fc05186
commit 9fcf9c1410
3 changed files with 43 additions and 52 deletions

View file

@ -328,6 +328,7 @@ fn register_builtins(store: &mut LintStore) {
store.register_renamed("disjoint_capture_migration", "rust_2021_incompatible_closure_captures");
store.register_renamed("or_patterns_back_compat", "rust_2021_incompatible_or_patterns");
store.register_renamed("non_fmt_panic", "non_fmt_panics");
store.register_renamed("unused_tuple_struct_fields", "dead_code");
// These were moved to tool lints, but rustc still sees them when compiling normally, before
// tool lints are registered, so `check_tool_name_for_backwards_compat` doesn't work. Use