2021-10-20 08:56:10 -05:00
error[E0659]: `std` is ambiguous
2018-12-25 08:56:47 -07:00
--> $DIR/ambiguity-macros.rs:7:5
2018-08-11 11:13:57 +03:00
|
2018-11-05 01:11:59 +03:00
LL | use std::io;
| ^^^ ambiguous name
|
2023-05-29 23:36:06 +03:00
= note: ambiguous because of a conflict between a macro-expanded name and a less macro-expanded name from outer scope during import or macro resolution
2019-08-04 02:07:35 +03:00
= note: `std` could refer to a built-in crate
= help: use `::std` to refer to this crate unambiguously
2018-11-05 01:11:59 +03:00
note: `std` could also refer to the module defined here
2018-12-25 08:56:47 -07:00
--> $DIR/ambiguity-macros.rs:12:9
2018-11-05 01:11:59 +03:00
|
2018-08-11 11:13:57 +03:00
LL | / mod std {
LL | | pub struct io;
LL | | }
2018-11-05 01:11:59 +03:00
| |_________^
...
LL | m!();
2021-10-14 13:28:28 -05:00
| ---- in this macro invocation
2018-11-25 16:08:43 +03:00
= help: use `crate::std` to refer to this module unambiguously
2021-02-13 14:52:25 -05:00
= note: this error originates in the macro `m` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-11 11:13:57 +03:00
2023-11-21 15:44:16 +00:00
error: aborting due to 1 previous error
2018-08-11 11:13:57 +03:00
2018-11-05 01:11:59 +03:00
For more information about this error, try `rustc --explain E0659`.