blob: d0c052cb2fd39fadc69593720402422e887a07fb [file] [log] [blame]
trait Foo {
type A;
}
struct FooStruct;
impl Foo for FooStruct {
type A = <FooStruct as Foo>::A;
//~^ ERROR overflow evaluating the requirement `<FooStruct as Foo>::A == _`
}
fn main() {}