Closed
Description
I tried this code:
pub trait Something {}
pub trait AnAmazingTrait {}
impl<T: Something> AnAmazingTrait for T {}
pub struct AnotherStruct<T>(T);
impl<T: Something> Something for AnotherStruct<T> {}
impl AnAmazingTrait for AnotherStruct<()> {}
I expected to see this happen: Two links in the sidebar of AnotherStruct
to AnAmazingTrait
, one under "Trait Implementations" going to the specific impl, another under "Blanket Implementations" going to the blanket impl.
Instead, this happened: Two links in the sidebar, but both link to the specific impl.
Meta
12:34 → rustdoc -vV
rustdoc 1.49.0-nightly (31530e5d1 2020-10-20)
binary: rustdoc
commit-hash: 31530e5d132ebcc3654baf2e5460599681520af0
commit-date: 2020-10-20
host: x86_64-unknown-linux-gnu
release: 1.49.0-nightly
LLVM version: 11.0
@rustbot modify labels: +T-rustdoc