blob: 72da02421b7221a5676e8b1cc66576fcba05d898 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// run-pass
// Check that closures implement `Copy`.
fn call<T, F: FnOnce() -> T>(f: F) -> T { f() }
fn main() {
let a = 5;
let hello = || {
println!("Hello {}", a);
a
};
assert_eq!(5, call(hello.clone()));
assert_eq!(5, call(hello));
assert_eq!(5, call(hello));
}
|