summary refs log tree commit diff
path: root/src/test/ui/issues/issue-20162.stderr
blob: 6848c3f0d8a546cc01d1b50a7bc78caec63a081d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0277]: the trait bound `X: Ord` is not satisfied
  --> $DIR/issue-20162.rs:5:7
   |
LL |     b.sort();
   |       ^^^^ the trait `Ord` is not implemented for `X`
   |
note: required by a bound in `slice::<impl [T]>::sort`
  --> $SRC_DIR/alloc/src/slice.rs:LL:COL
   |
LL |         T: Ord,
   |            ^^^ required by this bound in `slice::<impl [T]>::sort`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.