2018-11-20 16:28:07 -06:00
error: macro-expanded `extern crate` items cannot shadow names passed with `--extern`
2020-03-31 20:10:13 -05:00
--> $DIR/extern-prelude-extern-crate-restricted-shadowing.rs:19:9
2018-11-20 16:28:07 -06:00
|
LL | extern crate std as core;
| ^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | define_other_core!();
2021-10-14 13:28:28 -05:00
| -------------------- in this macro invocation
2019-12-16 07:56:47 -06:00
|
2021-02-13 13:52:25 -06:00
= note: this error originates in the macro `define_other_core` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-11-20 16:28:07 -06:00
2021-10-20 08:56:10 -05:00
error[E0659]: `Vec` is ambiguous
2020-03-31 20:10:13 -05:00
--> $DIR/extern-prelude-extern-crate-restricted-shadowing.rs:13:9
2018-09-28 17:31:54 -05:00
|
2019-03-09 06:03:44 -06:00
LL | Vec::panic!();
2018-09-28 17:31:54 -05:00
| ^^^ ambiguous name
|
2021-10-20 08:56:10 -05: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-10-14 19:20:50 -05:00
note: `Vec` could refer to the crate imported here
2020-03-31 20:10:13 -05:00
--> $DIR/extern-prelude-extern-crate-restricted-shadowing.rs:5:9
2018-09-28 17:31:54 -05:00
|
LL | extern crate std as Vec;
| ^^^^^^^^^^^^^^^^^^^^^^^^
...
LL | define_vec!();
2021-10-14 13:28:28 -05:00
| ------------- in this macro invocation
2022-12-09 09:56:23 -06:00
note: `Vec` could also refer to a struct from prelude
2021-02-17 08:52:31 -06:00
--> $SRC_DIR/std/src/prelude/mod.rs:LL:COL
2021-02-13 13:52:25 -06:00
= note: this error originates in the macro `define_vec` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-09-28 17:31:54 -05:00
2018-11-20 16:28:07 -06:00
error: aborting due to 2 previous errors
2018-09-28 17:31:54 -05:00
For more information about this error, try `rustc --explain E0659`.