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