blob: 9c47a003dfd09fc9b480e490128f21b2e1c5d2d6 [file] [log] [blame]
// check-pass
#![feature(associated_type_bounds)]
pub struct Flatten<I>
where
I: Iterator<Item: IntoIterator>,
{
inner: <I::Item as IntoIterator>::IntoIter,
}
fn main() {}