blob: b79a2973082791fd96eb6c021381437f738590be [file] [log] [blame]
// check-pass
pub trait Subscriber {
type Input;
}
pub trait Processor: Subscriber<Input = <Self as Processor>::Input> {
type Input;
}
fn main() {}