summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/copy-impl-cannot-normalize.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/copy-impl-cannot-normalize.stderr')
-rw-r--r--src/test/ui/traits/copy-impl-cannot-normalize.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/traits/copy-impl-cannot-normalize.stderr b/src/test/ui/traits/copy-impl-cannot-normalize.stderr
new file mode 100644
index 000000000..afdad1609
--- /dev/null
+++ b/src/test/ui/traits/copy-impl-cannot-normalize.stderr
@@ -0,0 +1,14 @@
+error[E0277]: the trait bound `T: TraitFoo` is not satisfied
+ --> $DIR/copy-impl-cannot-normalize.rs:22:1
+ |
+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`.