blob: bd072f44650020061b16ac24739d1c3178a17a1c [file] [log] [blame]
//@ check-pass
#![feature(associated_type_bounds)]
fn hello<'b, F>()
where
for<'a> F: Iterator<Item: 'a> + 'b,
{
}
fn main() {}