]> git.proxmox.com Git - rustc.git/blame - src/test/ui/noncopyable-class.stderr
New upstream version 1.32.0+dfsg1
[rustc.git] / src / test / ui / noncopyable-class.stderr
CommitLineData
b7449926
XL
1error[E0599]: no method named `clone` found for type `foo` in the current scope
2 --> $DIR/noncopyable-class.rs:44:16
8faf50e0 3 |
b7449926
XL
4LL | struct foo {
5 | ---------- method `clone` not found for this
8faf50e0 6...
b7449926 7LL | let _y = x.clone(); //~ ERROR no method named `clone` found
8faf50e0
XL
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
14error: aborting due to previous error
15
16For more information about this error, try `rustc --explain E0599`.