summaryrefslogtreecommitdiffstats
path: root/tests/ui/derives/derive-assoc-type-not-impl.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /tests/ui/derives/derive-assoc-type-not-impl.stderr
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/derives/derive-assoc-type-not-impl.stderr')
-rw-r--r--tests/ui/derives/derive-assoc-type-not-impl.stderr31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/ui/derives/derive-assoc-type-not-impl.stderr b/tests/ui/derives/derive-assoc-type-not-impl.stderr
new file mode 100644
index 000000000..91b334b41
--- /dev/null
+++ b/tests/ui/derives/derive-assoc-type-not-impl.stderr
@@ -0,0 +1,31 @@
+error[E0599]: the method `clone` exists for struct `Bar<NotClone>`, but its trait bounds were not satisfied
+ --> $DIR/derive-assoc-type-not-impl.rs:18:30
+ |
+LL | struct Bar<T: Foo> {
+ | ------------------
+ | |
+ | method `clone` not found for this struct
+ | doesn't satisfy `Bar<NotClone>: Clone`
+...
+LL | struct NotClone;
+ | --------------- doesn't satisfy `NotClone: Clone`
+...
+LL | Bar::<NotClone> { x: 1 }.clone();
+ | ^^^^^ method cannot be called on `Bar<NotClone>` due to unsatisfied trait bounds
+ |
+note: trait bound `NotClone: Clone` was not satisfied
+ --> $DIR/derive-assoc-type-not-impl.rs:6:10
+ |
+LL | #[derive(Clone)]
+ | ^^^^^ unsatisfied trait bound introduced in this `derive` macro
+ = help: items from traits can only be used if the trait is implemented and in scope
+ = note: the following trait defines an item `clone`, perhaps you need to implement it:
+ candidate #1: `Clone`
+help: consider annotating `NotClone` with `#[derive(Clone)]`
+ |
+LL | #[derive(Clone)]
+ |
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0599`.