2021-10-20 08:56:10 -05:00
|
|
|
error[E0659]: `sub` is ambiguous
|
2018-12-27 03:38:43 +03:00
|
|
|
--> $DIR/block-scoped-shadow-nested.rs:16:13
|
2018-11-10 18:58:37 +03:00
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | use sub::bar;
|
2018-11-10 18:58:37 +03:00
|
|
|
| ^^^ ambiguous name
|
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
= note: ambiguous because of multiple potential import sources
|
2018-11-10 18:58:37 +03:00
|
|
|
note: `sub` could refer to the module imported here
|
2018-12-27 03:38:43 +03:00
|
|
|
--> $DIR/block-scoped-shadow-nested.rs:14:9
|
2018-11-10 18:58:37 +03:00
|
|
|
|
|
|
|
|
LL | use my::sub;
|
|
|
|
| ^^^^^^^
|
|
|
|
note: `sub` could also refer to the module defined here
|
2018-12-27 03:38:43 +03:00
|
|
|
--> $DIR/block-scoped-shadow-nested.rs:9:1
|
2018-11-10 18:58:37 +03:00
|
|
|
|
|
|
|
|
LL | / mod sub {
|
|
|
|
LL | | pub fn bar() {}
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
2018-11-25 16:08:43 +03:00
|
|
|
= help: use `crate::sub` to refer to this module unambiguously
|
2018-11-10 18:58:37 +03:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0659`.
|