Added another test.
This commit is contained in:
parent
4e0e645dd9
commit
0994cf4ab0
1 changed files with 12 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
// build-pass (FIXME(62277): could be check-pass?)
|
||||
|
||||
#![feature(associated_type_bounds)]
|
||||
|
||||
pub struct Flatten<I>
|
||||
where
|
||||
I: Iterator<Item: IntoIterator>,
|
||||
{
|
||||
inner: <I::Item as IntoIterator>::IntoIter,
|
||||
}
|
||||
|
||||
fn main() {}
|
||||
Loading…
Add table
Add a link
Reference in a new issue