summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-11422.stderr
blob: b3dcc00f3d9ef2b0440ab602398e07f6435df07d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: this bound is already specified as the supertrait of `PartialOrd`
  --> $DIR/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