Closed
Description
E.g.,
error[E0412]: cannot find type `Path` in this scope
--> src/actions/compiler_message_parsing.rs:77:55
|
77 | fn make_suggestions(message: &CompilerMessage, file: &Path) -> Vec<Suggestion> {
| ^^^^ not found in this scope
|
help: possible candidates are found in other modules, you can import them into scope
|
20 | #[derive(use build::rustc::rustc::hir::Path;
|
20 | #[derive(use build::rustc::syntax::ast::Path;
|
20 | #[derive(use std::path::Path;
cc @oli-obk