]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-23073.rs
Auto merge of #107044 - cuviper:more-llvm-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / issues / issue-23073.rs
1 #![feature(associated_type_defaults)]
2
3 trait Foo { type T; }
4 trait Bar {
5     type Foo: Foo;
6     type FooT = <<Self as Bar>::Foo>::T; //~ ERROR ambiguous associated type
7 }
8
9 fn main() {}