mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 11:34:11 +00:00
13 lines
127 B
Rust
13 lines
127 B
Rust
// compile-flags: -Znext-solver
|
|
// check-pass
|
|
|
|
trait Foo {
|
|
type Bar: Bar;
|
|
}
|
|
|
|
trait Bar: Baz {}
|
|
|
|
trait Baz {}
|
|
|
|
fn main() {}
|