blob: de1dc422ab5f7db91ae0c7cffac1d6bf47e0fc1f [file]
#![feature(no_core)]
#![no_core]
trait Foo {
type T;
fn foo() -> T<<Self as Foo>::T>;
// { dg-error "could not resolve type path .T. .E0412." "" { target *-*-* } .-1 }
}
fn foo() {}