Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
chalkify
/
lower_impl.rs
blob: 6f79b3ba386a52c533dff6eceaf3bf8f6308cb8a [
file
] [
log
] [
blame
]
// check-pass
// compile-flags: -Z trait-solver=chalk
trait
Foo
{
}
impl
<
T
:
'
static
>
Foo
for
T where T
:
Iterator
<
Item
=
i32
>
{
}
trait
Bar
{
type
Assoc
;
}
impl
<
T
>
Bar
for
T where T
:
Iterator
<
Item
=
i32
>
{
type
Assoc
=
Vec
<
T
>;
}
fn
main
()
{
}