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

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

13 lines
203 B
Rust
Raw Normal View History

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() {}