mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
11 lines
178 B
Rust
11 lines
178 B
Rust
//@ run-pass
|
|
|
|
fn call_it<T>(f: Box<dyn FnOnce() -> T>) -> T {
|
|
f()
|
|
}
|
|
|
|
fn main() {
|
|
let s = "hello".to_owned();
|
|
assert_eq!(&call_it(Box::new(|| s)) as &str, "hello");
|
|
}
|