summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/issue-20825.rs
blob: 516c304d8b350e9d5184d1cf652c143d4118f136 (plain)
1
2
3
4
5
6
7
8
9
10
pub trait Subscriber {
    type Input;
}

pub trait Processor: Subscriber<Input = Self::Input> {
    //~^ ERROR cycle detected
    type Input;
}

fn main() {}