about summary refs log tree commit diff
path: root/tests/ui/associated-type-bounds/ambiguous-associated-type.rs
blob: ff3c6f2a95d6e0b32021762a75ee5877902bc53b (plain)
1
2
3
4
5
6
7
8
9
10
//@ check-pass

pub struct Flatten<I>
where
    I: Iterator<Item: IntoIterator>,
{
    inner: <I::Item as IntoIterator>::IntoIter,
}

fn main() {}