2017-12-10 13:47:55 -06:00
|
|
|
error[E0592]: duplicate definitions with name `dummy`
|
|
|
|
--> $DIR/coherence-overlap-upstream-inherent.rs:21:32
|
|
|
|
|
|
|
|
|
21 | impl<T> A<T> where T: Remote { fn dummy(&self) { } }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^ duplicate definitions for `dummy`
|
2017-12-10 14:29:24 -06:00
|
|
|
22 | //~^ ERROR E0592
|
|
|
|
23 | impl A<i16> { fn dummy(&self) { } }
|
2017-12-10 13:47:55 -06:00
|
|
|
| ------------------- other definition for `dummy`
|
|
|
|
|
|
|
|
|
= note: upstream crates may add new impl of trait `coherence_lib::Remote` for type `i16` in future versions
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|