rust/tests/ui/coherence/coherence-blanket-conflicts-with-specific-cross-crate.stderr

14 lines
448 B
Plaintext
Raw Normal View History

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