mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
11 lines
241 B
Rust
11 lines
241 B
Rust
//@ run-pass
|
|
#![allow(unused_braces)]
|
|
|
|
fn force<F>(f: F) -> isize where F: FnOnce() -> isize { return f(); }
|
|
|
|
pub fn main() {
|
|
fn f() -> isize { return 7; }
|
|
assert_eq!(force(f), 7);
|
|
let g = {||force(f)};
|
|
assert_eq!(g(), 7);
|
|
}
|