1 2 3 4 5 6 7
// compile-pass // skip-codegen #![feature(unboxed_closures, fn_traits)] fn main() { let k = |x: i32| { x + 1 }; Fn::call(&k, (0,)); }