Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
associated-type-bounds
/
implied-bounds-cycle.rs
blob: 8f2bec889eac5900adbbda2291309fa51139af18 [
file
] [
log
] [
blame
]
trait
A
{
type
T
;
}
trait
B
:
A
<
T
:
B
>
{}
//~^ ERROR cycle detected when computing the implied predicates of `B`
fn
main
()
{}