]> git.lizzy.rs Git - rust.git/blob - src/test/ui/copy-a-resource.stderr
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / copy-a-resource.stderr
1 error[E0599]: no method named `clone` found for struct `Foo` in the current scope
2   --> $DIR/copy-a-resource.rs:18:16
3    |
4 LL | struct Foo {
5    | ---------- method `clone` not found for this
6 ...
7 LL |     let _y = x.clone();
8    |                ^^^^^ method not found in `Foo`
9    | 
10   ::: $SRC_DIR/core/src/clone.rs:LL:COL
11    |
12 LL |     fn clone(&self) -> Self;
13    |        -----
14    |        |
15    |        the method is available for `std::sync::Arc<Foo>` here
16    |        the method is available for `std::rc::Rc<Foo>` here
17    |
18    = help: items from traits can only be used if the trait is implemented and in scope
19    = note: the following trait defines an item `clone`, perhaps you need to implement it:
20            candidate #1: `std::clone::Clone`
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0599`.