2016-05-19 12:00:43 +00:00
|
|
|
#![feature(unboxed_closures)]
|
|
|
|
|
|
|
|
fn foo<F: Fn<i32>>(f: F) -> F::Output { f(3) } //~ ERROR E0059
|
2024-02-09 12:17:55 +00:00
|
|
|
//~^ ERROR `i32` is not a tuple
|
|
|
|
//~| ERROR cannot use call notation
|
2016-05-19 12:00:43 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|