1 2 3 4 5 6 7
#![crate_type = "lib"] fn foo<T, U>(_: U) {} fn bar() { foo(|| {}); //~ ERROR type annotations needed }