rust/src/test/ui/issues/issue-21177.rs
2018-12-25 21:08:33 -07:00

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() { }