]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-20825-2.rs
Rollup merge of #86479 - exphp-forks:float-debug-exponential, r=yaahc
[rust.git] / src / test / ui / issues / issue-20825-2.rs
1 // check-pass
2 pub trait Subscriber {
3     type Input;
4 }
5
6 pub trait Processor: Subscriber<Input = <Self as Processor>::Input> {
7     type Input;
8 }
9
10 fn main() {}