2018-08-08 07:28:26 -05:00
|
|
|
error[E0371]: the object type `(dyn Baz + 'static)` automatically implements the trait `Foo`
|
2019-10-26 10:28:02 -05:00
|
|
|
--> $DIR/coherence-impl-trait-for-trait.rs:9:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | impl Foo for dyn Baz { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ `(dyn Baz + 'static)` automatically implements trait `Foo`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0371]: the object type `(dyn Baz + 'static)` automatically implements the trait `Bar`
|
2019-10-26 10:28:02 -05:00
|
|
|
--> $DIR/coherence-impl-trait-for-trait.rs:11:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | impl Bar for dyn Baz { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ `(dyn Baz + 'static)` automatically implements trait `Bar`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0371]: the object type `(dyn Baz + 'static)` automatically implements the trait `Baz`
|
2019-10-26 10:28:02 -05:00
|
|
|
--> $DIR/coherence-impl-trait-for-trait.rs:13:1
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | impl Baz for dyn Baz { }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ `(dyn Baz + 'static)` automatically implements trait `Baz`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0371`.
|