2021-10-20 08:56:10 -05:00
|
|
|
error[E0659]: `std` is ambiguous
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-path-prelude-shadowing.rs:29:9
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | std::panic!();
|
2018-09-07 18:51:20 -05:00
|
|
|
| ^^^ ambiguous name
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
2021-10-20 08:56:10 -05:00
|
|
|
= note: ambiguous because of a conflict between a name from a glob import and an outer scope during import or macro resolution
|
2019-08-03 18:07:35 -05:00
|
|
|
= note: `std` could refer to a built-in crate
|
2018-11-04 16:11:59 -06:00
|
|
|
note: `std` could also refer to the module imported here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/macro-path-prelude-shadowing.rs:27:9
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
|
|
|
LL | use m2::*; // glob-import user-defined `std`
|
|
|
|
| ^^^^^
|
2018-11-04 16:11:59 -06:00
|
|
|
= help: consider adding an explicit import of `std` to disambiguate
|
2018-11-11 10:46:04 -06:00
|
|
|
= help: or use `self::std` to refer to this module unambiguously
|
2018-07-22 18:52:51 -05:00
|
|
|
|
2018-08-11 08:58:28 -05:00
|
|
|
error: aborting due to previous error
|
2018-07-22 18:52:51 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0659`.
|