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` ```
21 lines
432 B
Rust
21 lines
432 B
Rust
// Regression test for #72911.
|
|
|
|
pub struct Lint {}
|
|
|
|
impl Lint {}
|
|
|
|
pub fn gather_all() -> impl Iterator<Item = Lint> {
|
|
lint_files().flat_map(|f| gather_from_file(&f))
|
|
}
|
|
|
|
fn gather_from_file(dir_entry: &foo::MissingItem) -> impl Iterator<Item = Lint> {
|
|
//~^ ERROR: cannot find
|
|
unimplemented!()
|
|
}
|
|
|
|
fn lint_files() -> impl Iterator<Item = foo::MissingItem> {
|
|
//~^ ERROR: cannot find
|
|
unimplemented!()
|
|
}
|
|
|
|
fn main() {}
|