2016-12-04 20:10:59 -06:00
|
|
|
error[E0034]: multiple applicable items in scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:10:7
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | a.foo()
|
2016-12-04 20:10:59 -06:00
|
|
|
| ^^^ multiple `foo` found
|
|
|
|
|
|
|
|
|
note: candidate #1 is defined in the trait `A`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:2:5
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo(&mut self) {}
|
2017-12-19 17:36:04 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2016-12-04 20:10:59 -06:00
|
|
|
note: candidate #2 is defined in the trait `B`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:6:5
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo(&mut self) {}
|
2017-12-19 17:36:04 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2023-02-21 15:11:08 -06:00
|
|
|
help: disambiguate the method for candidate #1
|
2019-12-04 00:19:18 -06:00
|
|
|
|
|
|
|
|
LL | A::foo(&a)
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~~
|
2023-02-21 15:11:08 -06:00
|
|
|
help: disambiguate the method for candidate #2
|
2019-12-04 00:19:18 -06:00
|
|
|
|
|
|
|
|
LL | B::foo(&a)
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~~
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
|
|
error[E0034]: multiple applicable items in scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:22:7
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | a.foo()
|
2016-12-04 20:10:59 -06:00
|
|
|
| ^^^ multiple `foo` found
|
|
|
|
|
|
|
|
|
note: candidate #1 is defined in the trait `C`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:14:5
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo(&self) {}
|
2017-12-19 17:36:04 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
2016-12-04 20:10:59 -06:00
|
|
|
note: candidate #2 is defined in the trait `D`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:18:5
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo(&self) {}
|
2017-12-19 17:36:04 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
2023-02-21 15:11:08 -06:00
|
|
|
help: disambiguate the method for candidate #1
|
2019-12-04 00:19:18 -06:00
|
|
|
|
|
|
|
|
LL | C::foo(&a)
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~~
|
2023-02-21 15:11:08 -06:00
|
|
|
help: disambiguate the method for candidate #2
|
2019-12-04 00:19:18 -06:00
|
|
|
|
|
|
|
|
LL | D::foo(&a)
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~~
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
|
|
error[E0034]: multiple applicable items in scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:34:7
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | a.foo()
|
2016-12-04 20:10:59 -06:00
|
|
|
| ^^^ multiple `foo` found
|
|
|
|
|
|
|
|
|
note: candidate #1 is defined in the trait `E`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:26:5
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo(self) {}
|
2017-12-19 17:36:04 -06:00
|
|
|
| ^^^^^^^^^^^^
|
2016-12-04 20:10:59 -06:00
|
|
|
note: candidate #2 is defined in the trait `F`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-37767.rs:30:5
|
2016-12-04 20:10:59 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo(self) {}
|
2017-12-19 17:36:04 -06:00
|
|
|
| ^^^^^^^^^^^^
|
2023-02-21 15:11:08 -06:00
|
|
|
help: disambiguate the method for candidate #1
|
2019-12-04 00:19:18 -06:00
|
|
|
|
|
|
|
|
LL | E::foo(a)
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~
|
2023-02-21 15:11:08 -06:00
|
|
|
help: disambiguate the method for candidate #2
|
2019-12-04 00:19:18 -06:00
|
|
|
|
|
|
|
|
LL | F::foo(a)
|
2021-06-21 21:07:19 -05:00
|
|
|
| ~~~~~~~~~
|
2016-12-04 20:10:59 -06:00
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to 3 previous errors
|
2016-12-04 20:10:59 -06:00
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0034`.
|