mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
217 B
Rust
12 lines
217 B
Rust
// run-pass
|
|
#![allow(unused_braces)]
|
|
|
|
fn foo(i: isize) -> isize { i + 1 }
|
|
|
|
fn apply<A, F>(f: F, v: A) -> A where F: FnOnce(A) -> A { f(v) }
|
|
|
|
pub fn main() {
|
|
let f = {|i| foo(i)};
|
|
assert_eq!(apply(f, 2), 3);
|
|
}
|