2016-12-05 02:10:59 +00:00
|
|
|
error[E0034]: multiple applicable items in scope
|
|
|
|
--> $DIR/issue-37767.rs:20:7
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | a.foo() //~ ERROR multiple applicable items
|
2016-12-05 02:10:59 +00:00
|
|
|
| ^^^ multiple `foo` found
|
|
|
|
|
|
|
|
|
note: candidate #1 is defined in the trait `A`
|
|
|
|
--> $DIR/issue-37767.rs:12:5
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn foo(&mut self) {}
|
2017-12-19 23:36:04 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2016-12-05 02:10:59 +00:00
|
|
|
= help: to disambiguate the method call, write `A::foo(&a)` instead
|
|
|
|
note: candidate #2 is defined in the trait `B`
|
|
|
|
--> $DIR/issue-37767.rs:16:5
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn foo(&mut self) {}
|
2017-12-19 23:36:04 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2016-12-05 02:10:59 +00:00
|
|
|
= help: to disambiguate the method call, write `B::foo(&a)` instead
|
|
|
|
|
|
|
|
error[E0034]: multiple applicable items in scope
|
|
|
|
--> $DIR/issue-37767.rs:32:7
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | a.foo() //~ ERROR multiple applicable items
|
2016-12-05 02:10:59 +00:00
|
|
|
| ^^^ multiple `foo` found
|
|
|
|
|
|
|
|
|
note: candidate #1 is defined in the trait `C`
|
|
|
|
--> $DIR/issue-37767.rs:24:5
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn foo(&self) {}
|
2017-12-19 23:36:04 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
2016-12-05 02:10:59 +00:00
|
|
|
= help: to disambiguate the method call, write `C::foo(&a)` instead
|
|
|
|
note: candidate #2 is defined in the trait `D`
|
|
|
|
--> $DIR/issue-37767.rs:28:5
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn foo(&self) {}
|
2017-12-19 23:36:04 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
2016-12-05 02:10:59 +00:00
|
|
|
= help: to disambiguate the method call, write `D::foo(&a)` instead
|
|
|
|
|
|
|
|
error[E0034]: multiple applicable items in scope
|
|
|
|
--> $DIR/issue-37767.rs:44:7
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | a.foo() //~ ERROR multiple applicable items
|
2016-12-05 02:10:59 +00:00
|
|
|
| ^^^ multiple `foo` found
|
|
|
|
|
|
|
|
|
note: candidate #1 is defined in the trait `E`
|
|
|
|
--> $DIR/issue-37767.rs:36:5
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn foo(self) {}
|
2017-12-19 23:36:04 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2016-12-05 02:10:59 +00:00
|
|
|
= help: to disambiguate the method call, write `E::foo(a)` instead
|
|
|
|
note: candidate #2 is defined in the trait `F`
|
|
|
|
--> $DIR/issue-37767.rs:40:5
|
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | fn foo(self) {}
|
2017-12-19 23:36:04 +00:00
|
|
|
| ^^^^^^^^^^^^
|
2016-12-05 02:10:59 +00:00
|
|
|
= help: to disambiguate the method call, write `F::foo(a)` instead
|
|
|
|
|
2017-07-02 10:49:30 +00:00
|
|
|
error: aborting due to 3 previous errors
|
2016-12-05 02:10:59 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0034`.
|