blob: 7d72ef839eab71a8c263bca6f981ce8ace41b0e1 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
pub trait Subscriber {
type Input;
}
pub trait Processor: Subscriber<Input = <Self as Processor>::Input> {
type Input;
}
fn main() {}