mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
8 lines
177 B
Rust
8 lines
177 B
Rust
#![feature(unboxed_closures)]
|
|
|
|
fn foo<F: Fn<i32>>(f: F) -> F::Output { f(3) } //~ ERROR E0059
|
|
//~^ ERROR `i32` is not a tuple
|
|
//~| ERROR cannot use call notation
|
|
|
|
fn main() {
|
|
}
|