mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
16 lines
565 B
Text
16 lines
565 B
Text
error: this bound is already specified as the supertrait of `PartialOrd`
|
|
--> tests/ui/crashes/ice-11422.rs:6:31
|
|
|
|
|
LL | fn gen() -> impl PartialOrd + PartialEq + Debug {}
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::implied-bounds-in-impls` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::implied_bounds_in_impls)]`
|
|
help: try removing this bound
|
|
|
|
|
LL - fn gen() -> impl PartialOrd + PartialEq + Debug {}
|
|
LL + fn gen() -> impl PartialOrd + Debug {}
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|