]> git.lizzy.rs Git - rust.git/blob - src/test/ui/coherence/coherence-blanket-conflicts-with-specific-cross-crate.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / coherence / coherence-blanket-conflicts-with-specific-cross-crate.stderr
1 error[E0119]: conflicting implementations of trait `go_trait::GoMut` for type `MyThingy`:
2   --> $DIR/coherence-blanket-conflicts-with-specific-cross-crate.rs:25:1
3    |
4 LL | impl GoMut for MyThingy { //~ ERROR conflicting implementations
5    | ^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: conflicting implementation in crate `go_trait`:
8            - impl<G> go_trait::GoMut for G
9              where G: go_trait::Go;
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0119`.