Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-21946.rs
blob: d0c052cb2fd39fadc69593720402422e887a07fb [
file
] [
log
] [
blame
] [
edit
]
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
()
{}