about summary refs log tree commit diff
path: root/tests/ui/traits/next-solver/elaborate-item-bounds.rs
blob: c9edf37b7db03513c3c0a09677a04bd40ec108d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//@ compile-flags: -Znext-solver
//@ check-pass

trait Foo {
    type Bar: Bar;
}

trait Bar: Baz {}

trait Baz {}

fn main() {}