rust/tests/ui/issues/issue-23073.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
185 B
Rust
Raw Normal View History

2015-07-30 22:18:34 +00:00
#![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() {}