rust/src/test/ui/coherence/coherence-blanket-conflicts-with-specific-cross-crate.old.stderr

14 lines
479 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0119]: conflicting implementations of trait `go_trait::GoMut` for type `MyThingy`:
2018-12-28 19:13:06 -06:00
--> $DIR/coherence-blanket-conflicts-with-specific-cross-crate.rs:18:1
2018-08-08 07:28:26 -05:00
|
2018-12-28 19:13:06 -06:00
LL | impl GoMut for MyThingy {
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: conflicting implementation in crate `go_trait`:
- impl<G> go_trait::GoMut for G
where G: go_trait::Go;
error: aborting due to previous error
For more information about this error, try `rustc --explain E0119`.