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 @@ -510,6 +510,11 @@ fn register_builtins(store: &mut LintStore) {
510
510
"converted into hard error, see PR #104616 \
511
511
<https://github.com/rust-lang/rust/pull/104616> for more information",
512
512
) ;
513
+ store. register_removed (
514
+ "implied_bounds_entailment" ,
515
+ "converted into hard error, see PR #117984 \
516
+ <https://github.com/rust-lang/rust/pull/117984> for more information",
517
+ ) ;
513
518
}
514
519
515
520
fn register_internals ( store : & mut LintStore ) {
Original file line number Diff line number Diff line change @@ -3387,7 +3387,6 @@ declare_lint_pass! {
3387
3387
HIDDEN_GLOB_REEXPORTS ,
3388
3388
ILL_FORMED_ATTRIBUTE_INPUT ,
3389
3389
ILLEGAL_FLOATING_POINT_LITERAL_PATTERN ,
3390
- IMPLIED_BOUNDS_ENTAILMENT ,
3391
3390
INCOMPLETE_INCLUDE ,
3392
3391
INDIRECT_STRUCTURAL_MATCH ,
3393
3392
INEFFECTIVE_UNSTABLE_TRAIT_IMPL ,
@@ -4233,13 +4232,6 @@ declare_lint! {
4233
4232
"named arguments in format used positionally"
4234
4233
}
4235
4234
4236
- declare_lint ! {
4237
- /// This lint has been removed in favor of a hard error.
4238
- pub IMPLIED_BOUNDS_ENTAILMENT ,
4239
- Deny ,
4240
- "impl method assumes more implied bounds than its corresponding trait method" ,
4241
- }
4242
-
4243
4235
declare_lint ! {
4244
4236
/// The `byte_slice_in_packed_struct_with_derive` lint detects cases where a byte slice field
4245
4237
/// (`[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