]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-2823.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-2823.stderr
1 error[E0599]: no method named `clone` found for type `C` in the current scope
2   --> $DIR/issue-2823.rs:23:16
3    |
4 LL | struct C {
5    | -------- method `clone` not found for this
6 ...
7 LL |     let _d = c.clone(); //~ ERROR no method named `clone` found
8    |                ^^^^^
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: `std::clone::Clone`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0599`.