blob: cef407537668688b93192350aef81fb2d5489d72 [file] [log] [blame]
// check-pass
#![feature(unboxed_closures, fn_traits)]
fn main() {
let k = |x: i32| { x + 1 };
Fn::call(&k, (0,));
}