mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
22 lines
471 B
Rust
22 lines
471 B
Rust
// Regression test for #100143
|
|
|
|
use std::iter::Peekable;
|
|
|
|
pub struct Span<F: Fn(&i32)> {
|
|
inner: Peekable<ConditionalIterator<F>>,
|
|
}
|
|
|
|
pub struct ConditionalIterator<F> {
|
|
f: F,
|
|
}
|
|
|
|
|
|
// @has 'fn_bound/struct.ConditionalIterator.html' '//h3[@class="code-header"]' 'impl<F: Fn(&i32)> Iterator for ConditionalIterator<F>'
|
|
impl<F: Fn(&i32)> Iterator for ConditionalIterator<F> {
|
|
type Item = ();
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
todo!()
|
|
}
|
|
}
|