blob: 5d2a3e6cbad12207bc26c1d9c001501293ef21f1 [file] [log] [blame]
#![feature(associated_type_bounds)]
struct Incorrect;
fn hello<F: for<'a> Iterator<Item: 'a>>() {
Incorrect //~ERROR: mismatched types
}
fn main() {}