blob: 9f46a722a508e1a09a0c1743e59a8bc9c703f7b8 [file] [log] [blame]
error[E0034]: multiple applicable items in scope
--> $DIR/method-ambig-two-traits-cross-crate.rs:11:21
|
LL | fn main() { 1_usize.me(); }
| ^^ multiple `me` found
|
note: candidate #1 is defined in an impl of the trait `Me2` for the type `usize`
--> $DIR/method-ambig-two-traits-cross-crate.rs:10:22
|
LL | impl Me2 for usize { fn me(&self) -> usize { *self } }
| ^^^^^^^^^^^^^^^^^^^^^
= help: to disambiguate the method call, write `Me2::me(1_usize)` instead
= note: candidate #2 is defined in an impl of the trait `ambig_impl_2_lib::Me` for the type `usize`
= help: to disambiguate the method call, write `ambig_impl_2_lib::Me::me(1_usize)` instead
error: aborting due to previous error
For more information about this error, try `rustc --explain E0034`.