mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-15 01:43:38 +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() {
|
|
}
|