]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/issue-20825-2.rs
Rollup merge of #99479 - Enselic:import-can-be-without-id, r=camelid
[rust.git] / src / test / ui / associated-types / 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() {}