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