mirror of
https://github.com/rust-lang/rust.git
synced 2026-03-14 00:02:34 +00:00
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