blob: 1d0d6d5c5d7be79342b64839f0b68db4a7d2cf75 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0277]: the trait bound `X: std::cmp::Ord` is not satisfied
--> $DIR/issue-20162.rs:5:7
|
LL | b.sort();
| ^^^^ the trait `std::cmp::Ord` is not implemented for `X`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.
|