Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
chalkify
/
lower_impl.rs
blob: f586cf083915debc7986e0d2e59d5a69f4149cac [
file
]
// check-pass
// compile-flags: -Z 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
()
{
}