mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 03:25:55 +00:00
12 lines
226 B
Rust
12 lines
226 B
Rust
//@ compile-flags: -Znext-solver
|
|
//@ check-pass
|
|
|
|
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);
|
|
}
|