13 lines
133 B
Rust
13 lines
133 B
Rust
|
// compile-flags: -Ztrait-solver=next
|
||
|
// check-pass
|
||
|
|
||
|
trait Foo {
|
||
|
type Bar: Bar;
|
||
|
}
|
||
|
|
||
|
trait Bar: Baz {}
|
||
|
|
||
|
trait Baz {}
|
||
|
|
||
|
fn main() {}
|