2020-09-26 16:20:14 -05:00
|
|
|
error[E0599]: the method `clone` exists for struct `Box<dyn Foo>`, but its trait bounds were not satisfied
|
2020-03-31 20:10:13 -05:00
|
|
|
--> $DIR/unique-object-noncopyable.rs:24:16
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-10-06 09:37:23 -05:00
|
|
|
LL | trait Foo {
|
|
|
|
| ---------
|
|
|
|
| |
|
|
|
|
| doesn't satisfy `dyn Foo: Clone`
|
|
|
|
| doesn't satisfy `dyn Foo: Sized`
|
2020-02-18 01:22:19 -06:00
|
|
|
...
|
2020-10-06 09:37:23 -05:00
|
|
|
LL | let _z = y.clone();
|
2020-09-26 16:20:14 -05:00
|
|
|
| ^^^^^ method cannot be called on `Box<dyn Foo>` due to unsatisfied trait bounds
|
2021-06-10 06:52:00 -05:00
|
|
|
|
|
2020-10-06 09:37:23 -05:00
|
|
|
::: $SRC_DIR/alloc/src/boxed.rs:LL:COL
|
2020-03-17 10:45:02 -05:00
|
|
|
|
|
2020-10-06 09:37:23 -05:00
|
|
|
LL | / pub struct Box<
|
|
|
|
LL | | T: ?Sized,
|
2020-12-04 07:47:15 -06:00
|
|
|
LL | | #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global,
|
2020-10-06 09:37:23 -05:00
|
|
|
LL | | >(Unique<T>, A);
|
|
|
|
| |________________- doesn't satisfy `Box<dyn Foo>: Clone`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-26 16:20:14 -05:00
|
|
|
= note: the following trait bounds were not satisfied:
|
2020-09-02 02:40:56 -05:00
|
|
|
`dyn Foo: Sized`
|
|
|
|
which is required by `Box<dyn Foo>: Clone`
|
|
|
|
`dyn Foo: Clone`
|
|
|
|
which is required by `Box<dyn Foo>: Clone`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|