]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/shadow.stderr
Rollup merge of #104158 - Ayush1325:executable, r=Mark-Simulacrum
[rust.git] / src / test / ui / proc-macro / shadow.stderr
1 error[E0259]: the name `test_macros` is defined multiple times
2   --> $DIR/shadow.rs:6:1
3    |
4 LL | extern crate test_macros;
5    | ------------------------- previous import of the extern crate `test_macros` here
6 LL | #[macro_use]
7 LL | extern crate test_macros;
8    | ^^^^^^^^^^^^^^^^^^^^^^^^^ `test_macros` reimported here
9    |
10    = note: `test_macros` must be defined only once in the type namespace of this module
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0259`.