diff options
Diffstat (limited to 'tests/rustdoc/fn-bound.rs')
-rw-r--r-- | tests/rustdoc/fn-bound.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/rustdoc/fn-bound.rs b/tests/rustdoc/fn-bound.rs new file mode 100644 index 000000000..9e060ff20 --- /dev/null +++ b/tests/rustdoc/fn-bound.rs @@ -0,0 +1,21 @@ +// 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!() + } +} |