summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/copy-impl-cannot-normalize.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/traits/copy-impl-cannot-normalize.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/traits/copy-impl-cannot-normalize.stderr b/src/test/ui/traits/copy-impl-cannot-normalize.stderr
deleted file mode 100644
index 68b95b42b..000000000
--- a/src/test/ui/traits/copy-impl-cannot-normalize.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error[E0277]: the trait bound `T: TraitFoo` is not satisfied
- --> $DIR/copy-impl-cannot-normalize.rs:22:18
- |
-LL | impl<T> Copy for Foo<T> {}
- | ^^^^^^ the trait `TraitFoo` is not implemented for `T`
- |
-help: consider restricting type parameter `T`
- |
-LL | impl<T: TraitFoo> Copy for Foo<T> {}
- | ++++++++++
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0277`.