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