rust/src/test/ui/coherence-overlap-downstream.stderr

22 lines
842 B
Plaintext
Raw Normal View History

error[E0119]: conflicting implementations of trait `Sweet`:
--> $DIR/coherence-overlap-downstream.rs:18:1
|
2018-02-22 18:42:32 -06:00
LL | impl<T:Sugar> Sweet for T { }
| ------------------------- first implementation here
2018-02-22 18:42:32 -06:00
LL | impl<T:Fruit> Sweet for T { }
| ^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation
error[E0119]: conflicting implementations of trait `Foo<_>` for type `i32`:
--> $DIR/coherence-overlap-downstream.rs:24:1
|
2018-02-22 18:42:32 -06:00
LL | impl<X, T> Foo<X> for T where T: Bar<X> {}
| --------------------------------------- first implementation here
2018-02-22 18:42:32 -06:00
LL | impl<X> Foo<X> for i32 {}
| ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `i32`
|
= note: downstream crates may implement trait `Bar<_>` for type `i32`
error: aborting due to 2 previous errors
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0119"