1 2 3 4 5 6 7 8 9
// check-pass #![feature(unboxed_closures)] extern "rust-call" fn foo<T>(_: T) {} fn main() { foo(()); foo((1, 2)); }