about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-20825-2.rs
blob: cceed542186699512aa06a0796577e2a4fd3f3f1 (plain)
1
2
3
4
5
6
7
8
9
10
// compile-pass
pub trait Subscriber {
    type Input;
}

pub trait Processor: Subscriber<Input = <Self as Processor>::Input> {
    type Input;
}

fn main() {}