error[E0599]: no method named `clone` found for struct `issue_69725::Struct` in the current scope
--> $DIR/issue-69725.rs:7:32
|
LL | let _ = Struct::::new().clone();
| ^^^^^ method not found in `issue_69725::Struct`
|
::: $DIR/auxiliary/issue-69725.rs:2:1
|
LL | pub struct Struct(A);
| ------------------------ doesn't satisfy `issue_69725::Struct: std::clone::Clone`
|
::: $SRC_DIR/libcore/clone.rs:LL:COL
|
LL | fn clone(&self) -> Self;
| -----
| |
| the method is available for `std::sync::Arc>` here
| the method is available for `std::rc::Rc>` here
|
= note: the method `clone` exists but the following trait bounds were not satisfied:
`A: std::clone::Clone`
which is required by `issue_69725::Struct: std::clone::Clone`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0599`.