rust/tests/ui/associated-type-bounds/issue-71443-2.rs

10 lines
98 B
Rust

//@ check-pass
fn hello<'b, F>()
where
for<'a> F: Iterator<Item: 'a> + 'b,
{
}
fn main() {}