summaryrefslogtreecommitdiff
path: root/tests/ui/copy-a-resource.stderr
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-05 09:13:28 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-11 09:32:08 +0000
commitcf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch)
tree40a88d9a46aaf3e8870676eb2538378b75a263eb /tests/ui/copy-a-resource.stderr
parentca855e6e42787ecd062d81d53336fe6788ef51a9 (diff)
Move /src/test to /tests
Diffstat (limited to 'tests/ui/copy-a-resource.stderr')
-rw-r--r--tests/ui/copy-a-resource.stderr16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/ui/copy-a-resource.stderr b/tests/ui/copy-a-resource.stderr
new file mode 100644
index 00000000000..128087f1e37
--- /dev/null
+++ b/tests/ui/copy-a-resource.stderr
@@ -0,0 +1,16 @@
+error[E0599]: no method named `clone` found for struct `Foo` in the current scope
+ --> $DIR/copy-a-resource.rs:18:16
+ |
+LL | struct Foo {
+ | ---------- method `clone` not found for this struct
+...
+LL | let _y = x.clone();
+ | ^^^^^ method not found in `Foo`
+ |
+ = 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`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0599`.