blob: 076aefcf8fc60afedc88307195ffde433d5a5d42 [file] [log] [blame]
// compile-flags: -Ztrait-solver=next
// check-pass
trait Foo {
type Bar: Bar;
}
trait Bar: Baz {}
trait Baz {}
fn main() {}