mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +00:00
9 lines
177 B
Rust
9 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() {
|
|
}
|