mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 13:25:09 +00:00
Add dedicated error for "proc macro not found"
This commit is contained in:
parent
c66d477f5a
commit
1b26520971
2 changed files with 3 additions and 1 deletions
|
@ -50,7 +50,7 @@ impl ProcMacroExpander {
|
|||
|
||||
proc_macro.expander.expand(&tt, None).map_err(mbe::ExpandError::from)
|
||||
}
|
||||
None => Err(err!("Unresolved proc macro")),
|
||||
None => Err(mbe::ExpandError::UnresolvedProcMacro),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue