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` ```
29 lines
526 B
Rust
29 lines
526 B
Rust
//@ edition:2018
|
|
#![feature(decl_macro)]
|
|
|
|
macro a() {
|
|
extern crate core as my_core;
|
|
mod v {
|
|
// Early resolution.
|
|
use my_core; //~ ERROR unresolved import `my_core`
|
|
}
|
|
mod u {
|
|
// Late resolution.
|
|
fn f() { my_core::mem::drop(0); }
|
|
//~^ ERROR cannot find
|
|
}
|
|
}
|
|
|
|
a!();
|
|
|
|
mod v {
|
|
// Early resolution.
|
|
use my_core; //~ ERROR unresolved import `my_core`
|
|
}
|
|
mod u {
|
|
// Late resolution.
|
|
fn f() { my_core::mem::drop(0); }
|
|
//~^ ERROR cannot find
|
|
}
|
|
|
|
fn main() {}
|