Skip to content

Commit 0994cf4

Browse files
author
Alexander Regueiro
committed
Added another test.
1 parent 4e0e645 commit 0994cf4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// build-pass (FIXME(62277): could be 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() {}

0 commit comments

Comments
 (0)