summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-type-bounds/issue-71443-2.rs
blob: 813dcd60ad1058e853384286b196d2988c67b641 (plain)
1
2
3
4
5
6
7
8
9
10
11
// check-pass

#![feature(associated_type_bounds)]

fn hello<'b, F>()
where
    for<'a> F: Iterator<Item: 'a> + 'b,
{
}

fn main() {}