mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
7 lines
109 B
Rust
7 lines
109 B
Rust
#![feature(unboxed_closures)]
|
|
|
|
fn foo<F: Fn<i32>>(f: F) -> F::Output { f(3) } //~ ERROR E0059
|
|
|
|
fn main() {
|
|
}
|