mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 22:18:23 +03:00
ee4461a996
Fix rendering of stabilization version for trait implementors Rustdoc compares an item's stabilization version with its parent's to not render it if they are the same. Here, the implementor was compared with itself, resulting in the stabilization version never getting shown. This probably needs a test. Fixes #80777. r? `@jyn514`