2021-10-20 13:56:10 +00:00
|
|
|
error[E0659]: `Foo` is ambiguous
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/rfc-1560-warning-cycle.rs:9:17
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn f(_: Foo) {}
|
2018-09-07 23:51:20 +00:00
|
|
|
| ^^^ ambiguous name
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2021-10-20 13:56:10 +00:00
|
|
|
= note: ambiguous because of multiple glob imports of a name in the same module
|
2018-11-04 22:11:59 +00:00
|
|
|
note: `Foo` could refer to the struct imported here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/rfc-1560-warning-cycle.rs:7:13
|
2018-05-14 22:24:34 +00:00
|
|
|
|
|
|
|
|
LL | use *;
|
|
|
|
| ^
|
2018-11-04 22:11:59 +00:00
|
|
|
= help: consider adding an explicit import of `Foo` to disambiguate
|
|
|
|
note: `Foo` could also refer to the struct imported here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/rfc-1560-warning-cycle.rs:8:13
|
2018-05-14 22:24:34 +00:00
|
|
|
|
|
|
|
|
LL | use bar::*;
|
|
|
|
| ^^^^^^
|
2018-11-04 22:11:59 +00:00
|
|
|
= help: consider adding an explicit import of `Foo` to disambiguate
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2018-05-14 22:24:34 +00:00
|
|
|
For more information about this error, try `rustc --explain E0659`.
|