mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 16:54:01 +00:00
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() {}
|