rustdoc: fix ICE from rustc_resolve and librustdoc parse divergence
This commit is contained in:
parent
de96f3d873
commit
df8a48fc8a
3 changed files with 61 additions and 0 deletions
|
@ -367,6 +367,7 @@ fn preprocess_link(link: &str) -> Box<str> {
|
|||
let link = link.strip_suffix("{}").unwrap_or(link);
|
||||
let link = link.strip_suffix("[]").unwrap_or(link);
|
||||
let link = if link != "!" { link.strip_suffix('!').unwrap_or(link) } else { link };
|
||||
let link = link.trim();
|
||||
strip_generics_from_path(link).unwrap_or_else(|_| link.into())
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue