]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unique-object-noncopyable.stderr
Reduce vebosity of E0599
[rust.git] / src / test / ui / unique-object-noncopyable.stderr
1 error[E0599]: no method named `clone` found for struct `std::boxed::Box<dyn Foo>` in the current scope
2   --> $DIR/unique-object-noncopyable.rs:24:16
3    |
4 LL | trait Foo {
5    | ---------
6    | |
7    | this trait doesn't satisfy the bound `std::clone::Clone`
8    | this trait doesn't satisfy the bound `std::marker::Sized`
9 ...
10 LL |     let _z = y.clone();
11    |                ^^^^^ method not found in `std::boxed::Box<dyn Foo>`
12    |
13    = note: the method `clone` exists but the following trait bounds were not satisfied:
14            `dyn Foo: std::clone::Clone`
15            `dyn Foo: std::marker::Sized`
16    = help: items from traits can only be used if the trait is implemented and in scope
17    = note: the following trait defines an item `clone`, perhaps you need to implement it:
18            candidate #1: `std::clone::Clone`
19
20 error: aborting due to previous error
21
22 For more information about this error, try `rustc --explain E0599`.