Sign in
rust
/
rust
/
e8a63124746761e743d69ea510194de2ada4034f
/
.
/
tests
/
ui
/
associated-type-bounds
/
ambiguous-associated-type.rs
blob: ff3c6f2a95d6e0b32021762a75ee5877902bc53b [
file
] [
log
] [
blame
]
//@ check-pass
pub
struct
Flatten
<
I
>
where
I
:
Iterator
<
Item
:
IntoIterator
>,
{
inner
:
<
I
::
Item
as
IntoIterator
>::
IntoIter
,
}
fn
main
()
{}