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

13 lines
456 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0119]: conflicting implementations of trait `MyTrait` for type `MyType`:
2018-12-25 09:56:47 -06:00
--> $DIR/coherence-blanket-conflicts-with-specific.rs:19:1
2018-08-08 07:28:26 -05:00
|
LL | impl<T> MyTrait for T {
| --------------------- first implementation here
...
LL | impl MyTrait for MyType { //~ ERROR E0119
| ^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `MyType`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0119`.