File tree 2 files changed +5
-8
lines changed
2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -509,6 +509,11 @@ fn register_builtins(store: &mut LintStore) {
509
509
"converted into hard error, see PR #104616 \
510
510
<https://github.com/rust-lang/rust/pull/104616> for more information",
511
511
) ;
512
+ store. register_removed (
513
+ "implied_bounds_entailment" ,
514
+ "converted into hard error, see PR #117984 \
515
+ <https://github.com/rust-lang/rust/pull/117984> for more information",
516
+ ) ;
512
517
}
513
518
514
519
fn register_internals ( store : & mut LintStore ) {
Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ declare_lint_pass! {
47
47
HIDDEN_GLOB_REEXPORTS ,
48
48
ILL_FORMED_ATTRIBUTE_INPUT ,
49
49
ILLEGAL_FLOATING_POINT_LITERAL_PATTERN ,
50
- IMPLIED_BOUNDS_ENTAILMENT ,
51
50
INCOMPLETE_INCLUDE ,
52
51
INDIRECT_STRUCTURAL_MATCH ,
53
52
INEFFECTIVE_UNSTABLE_TRAIT_IMPL ,
@@ -4235,13 +4234,6 @@ declare_lint! {
4235
4234
"named arguments in format used positionally"
4236
4235
}
4237
4236
4238
- declare_lint ! {
4239
- /// This lint has been removed in favor of a hard error.
4240
- pub IMPLIED_BOUNDS_ENTAILMENT ,
4241
- Deny ,
4242
- "impl method assumes more implied bounds than its corresponding trait method" ,
4243
- }
4244
-
4245
4237
declare_lint ! {
4246
4238
/// The `byte_slice_in_packed_struct_with_derive` lint detects cases where a byte slice field
4247
4239
/// (`[u8]`) or string slice field (`str`) is used in a `packed` struct that derives one or
You can’t perform that action at this time.
0 commit comments