blob: a0ca91336c365845e6ce8a9ca71481ae4c93e100 [file] [log] [blame]
#![feature(associated_type_defaults)]
trait Foo { type T; }
trait Bar {
type Foo: Foo;
type FooT = <<Self as Bar>::Foo>::T; //~ ERROR ambiguous associated type
}
fn main() {}