blob: 7451fd0ce69c72ce26de53e8526d506d1a308892 [file] [log] [blame] [edit]
//@ 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");
}