Remove suspicious auto trait lint

This commit is contained in:
Santiago Pastorino 2024-02-19 17:39:25 -03:00
parent eee9d2a773
commit 086463b227
No known key found for this signature in database
GPG key ID: 8131A24E0C79EFAF
23 changed files with 78 additions and 527 deletions

View file

@ -524,6 +524,11 @@ fn register_builtins(store: &mut LintStore) {
"no longer needed, see RFC #3535 \
<https://rust-lang.github.io/rfcs/3535-constants-in-patterns.html> for more information",
);
store.register_removed(
"suspicious_auto_trait_impls",
"no longer needed, see #93367 \
<https://github.com/rust-lang/rust/issues/93367> for more information",
);
}
fn register_internals(store: &mut LintStore) {