rust/tests/ui/coherence/coherence-impl-trait-for-trait.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
901 B
Plaintext
Raw Normal View History

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