mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
Added another test.
This commit is contained in:
parent
4e0e645dd9
commit
0994cf4ab0
@ -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…
Reference in New Issue
Block a user