mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
07af55edd4
Use proper impl self type for alias impl in rustdoc We don't want to use `type_of(type_alias)`, we want to use `type_of(impl)` -- this will give us the self type of the impl *properly substituted* in the case that it's an alias. Fixes #111420