]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-20825.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-20825.rs
CommitLineData
c1a9b12d
SL
1pub trait Subscriber {
2 type Input;
3}
85aaf69f 4
c1a9b12d 5pub trait Processor: Subscriber<Input = Self::Input> {
83c7162d 6 //~^ ERROR cycle detected
c1a9b12d
SL
7 type Input;
8}
223e47cc 9
d9579d0f 10fn main() {}