mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 22:22:44 +00:00
10 lines
128 B
Rust
10 lines
128 B
Rust
|
// check-pass
|
||
|
#![feature(unboxed_closures)]
|
||
|
|
||
|
extern "rust-call" fn foo<T>(_: T) {}
|
||
|
|
||
|
fn main() {
|
||
|
foo(());
|
||
|
foo((1, 2));
|
||
|
}
|