summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/issue-71136.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/traits/issue-71136.stderr19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/traits/issue-71136.stderr b/src/test/ui/traits/issue-71136.stderr
new file mode 100644
index 000000000..62a2a64ed
--- /dev/null
+++ b/src/test/ui/traits/issue-71136.stderr
@@ -0,0 +1,19 @@
+error[E0277]: the trait bound `Foo: Clone` is not satisfied
+ --> $DIR/issue-71136.rs:5:5
+ |
+LL | #[derive(Clone)]
+ | ----- in this derive macro expansion
+LL | struct FooHolster {
+LL | the_foos: Vec<Foo>,
+ | ^^^^^^^^^^^^^^^^^^ the trait `Clone` is not implemented for `Foo`
+ |
+ = note: required because of the requirements on the impl of `Clone` for `Vec<Foo>`
+ = note: this error originates in the derive macro `Clone` (in Nightly builds, run with -Z macro-backtrace for more info)
+help: consider annotating `Foo` with `#[derive(Clone)]`
+ |
+LL | #[derive(Clone)]
+ |
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.