]> git.lizzy.rs Git - rust.git/blob - src/test/ui/noncopyable-class.stderr
Auto merge of #98626 - oli-obk:tracing, r=lcnr
[rust.git] / src / test / ui / noncopyable-class.stderr
1 error[E0599]: no method named `clone` found for struct `Foo` in the current scope
2   --> $DIR/noncopyable-class.rs:34:16
3    |
4 LL | struct Foo {
5    | ---------- method `clone` not found for this struct
6 ...
7 LL |     let _y = x.clone();
8    |                ^^^^^ method not found in `Foo`
9    |
10    = help: items from traits can only be used if the trait is implemented and in scope
11    = note: the following trait defines an item `clone`, perhaps you need to implement it:
12            candidate #1: `Clone`
13 help: one of the expressions' fields has a method of the same name
14    |
15 LL |     let _y = x.i.clone();
16    |                ++
17 help: one of the expressions' fields has a method of the same name
18    |
19 LL |     let _y = x.j.x.clone();
20    |                ++++
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0599`.