We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
void
rust-lang/rust#58733
trait MyTrait { type Output; } impl<T> MyTrait for fn() -> T { type Output = T; } type Void = <fn() -> ! as MyTrait>::Output;