]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-type-bounds/ambiguous-associated-type.rs
Auto merge of #103894 - mati865:gnullvm-libunwind-changes, r=thomcc
[rust.git] / src / test / ui / associated-type-bounds / ambiguous-associated-type.rs
1 // check-pass
2
3 #![feature(associated_type_bounds)]
4
5 pub struct Flatten<I>
6 where
7     I: Iterator<Item: IntoIterator>,
8 {
9     inner: <I::Item as IntoIterator>::IntoIter,
10 }
11
12 fn main() {}