Remove "failed to resolve" and use the same format we use in other resolution errors "cannot find `name`". ``` error[E0433]: cannot find `nonexistent` in `existent` --> $DIR/custom_attr_multisegment_error.rs:5:13 | LL | #[existent::nonexistent] | ^^^^^^^^^^^ could not find `nonexistent` in `existent` ```
20 lines
829 B
Text
20 lines
829 B
Text
error: macro-expanded `extern crate` items cannot shadow names passed with `--extern`
|
|
--> $DIR/extern-prelude-extern-crate-fail.rs:16:9
|
|
|
|
|
LL | extern crate std as non_existent;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
...
|
|
LL | define_std_as_non_existent!();
|
|
| ----------------------------- in this macro invocation
|
|
|
|
|
= note: this error originates in the macro `define_std_as_non_existent` (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error[E0433]: cannot find module or crate `two_macros` in this scope
|
|
--> $DIR/extern-prelude-extern-crate-fail.rs:10:9
|
|
|
|
|
LL | two_macros::m!();
|
|
| ^^^^^^^^^^ use of unresolved module or unlinked crate `two_macros`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0433`.
|