mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
185 B
Rust
10 lines
185 B
Rust
#![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() {}
|