summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-20162.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-20162.stderr')
-rw-r--r--src/test/ui/issues/issue-20162.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/issues/issue-20162.stderr b/src/test/ui/issues/issue-20162.stderr
deleted file mode 100644
index 3f9b3be98..000000000
--- a/src/test/ui/issues/issue-20162.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0277]: the trait bound `X: Ord` is not satisfied
- --> $DIR/issue-20162.rs:5:5
- |
-LL | b.sort();
- | ^ ---- required by a bound introduced by this call
- | |
- | 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`
-help: consider annotating `X` with `#[derive(Ord)]`
- |
-LL | #[derive(Ord)]
- |
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0277`.