Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
issues
/
issue-21946.rs
blob: d0c052cb2fd39fadc69593720402422e887a07fb [
file
]
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
()
{}