7 lines
85 B
Rust
7 lines
85 B
Rust
//@ check-pass
|
|
|
|
trait A<T> {}
|
|
struct B<T> where B<T>: A<B<T>> { t: T }
|
|
|
|
fn main() {}
|