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