blob: c9edf37b7db03513c3c0a09677a04bd40ec108d8 [file] [log] [blame]
//@ compile-flags: -Znext-solver
//@ check-pass
trait Foo {
type Bar: Bar;
}
trait Bar: Baz {}
trait Baz {}
fn main() {}