Open
Description
I tried this code:
#![feature(negative_impls)]
pub struct S {}
pub trait Trait {}
impl<T> !Trait for T {}
I expected to see this happen: Rustdoc shows impl !Trait for S
on the documentation for S, the same way it shows impl<T> Any for T
.
Instead, this happened: Rustdoc does not show the blanket implementation.
Meta
rustdoc --version
: rustdoc 1.50.0-nightly (0edce6f 2020-12-24)