Sign in
rust
/
rust
/
HEAD
/
.
/
tests
/
ui
/
associated-types
/
issue-20825.rs
blob: 516c304d8b350e9d5184d1cf652c143d4118f136 [
file
] [
log
] [
blame
]
pub
trait
Subscriber
{
type
Input
;
}
pub
trait
Processor
:
Subscriber
<
Input
=
Self
::
Input
>
{
//~^ ERROR cycle detected
type
Input
;
}
fn
main
()
{}