11 lines
158 B
Rust
11 lines
158 B
Rust
// check-pass
|
|
pub trait Subscriber {
|
|
type Input;
|
|
}
|
|
|
|
pub trait Processor: Subscriber<Input = <Self as Processor>::Input> {
|
|
type Input;
|
|
}
|
|
|
|
fn main() {}
|