summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/own-bound-span.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/own-bound-span.stderr')
-rw-r--r--src/test/ui/generic-associated-types/own-bound-span.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/generic-associated-types/own-bound-span.stderr b/src/test/ui/generic-associated-types/own-bound-span.stderr
deleted file mode 100644
index 8ab8ea623..000000000
--- a/src/test/ui/generic-associated-types/own-bound-span.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0277]: the trait bound `String: Copy` is not satisfied
- --> $DIR/own-bound-span.rs:14:12
- |
-LL | let _: <S as D>::P<String>;
- | ^^^^^^^^^^^^^^^^^^^ the trait `Copy` is not implemented for `String`
- |
-note: required by a bound in `D::P`
- --> $DIR/own-bound-span.rs:4:15
- |
-LL | type P<T: Copy>;
- | ^^^^ required by this bound in `D::P`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0277`.