Rollup merge of #110501 - notriddle:notriddle/ice-110495, r=petrochenkov

rustdoc: fix ICE from rustc_resolve and librustdoc parse divergence

Fixes #110495
This commit is contained in:
Dylan DPC 2023-04-21 20:35:28 +05:30 committed by GitHub
commit fbc905e16a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 61 additions and 0 deletions

View file

@ -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())
}