2018-08-08 07:28:26 -05:00
|
|
|
error[E0034]: multiple applicable items in scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/method-ambig-two-traits-cross-crate.rs:11:21
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn main() { 1_usize.me(); } //~ ERROR E0034
|
|
|
|
| ^^ multiple `me` found
|
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
note: candidate #1 is defined in an impl of the trait `Me2` for the type `usize`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/method-ambig-two-traits-cross-crate.rs:10:22
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
LL | impl Me2 for usize { fn me(&self) -> usize { *self } }
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2018-12-16 21:21:47 -06:00
|
|
|
= note: candidate #2 is defined in an impl of the trait `ambig_impl_2_lib::Me` for the type `usize`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0034`.
|