10 lines
164 B
Rust
10 lines
164 B
Rust
trait Trait {
|
|
type A;
|
|
type B;
|
|
}
|
|
|
|
fn foo<T: Trait<A = T::B>>() { }
|
|
//~^ ERROR cycle detected
|
|
//~| ERROR associated type `B` not found for `T`
|
|
|
|
fn main() { }
|