os-rust/src/test/ui/coherence/coherence-overlap-upstream.old.stderr

14 lines
541 B
Text
Raw Normal View History

error[E0119]: conflicting implementations of trait `Foo` for type `i16`:
2018-12-29 02:13:06 +01:00
--> $DIR/coherence-overlap-upstream.rs:16:1
|
2018-02-23 03:42:32 +03:00
LL | impl<T> Foo for T where T: Remote {}
| --------------------------------- first implementation here
2018-02-23 03:42:32 +03:00
LL | impl Foo for i16 {}
| ^^^^^^^^^^^^^^^^ conflicting implementation for `i16`
|
= note: upstream crates may add a new impl of trait `coherence_lib::Remote` for type `i16` in future versions
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0119`.