2014-08-19 15:56:38 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// Tests that the reexports of `FnOnce` et al from the prelude work.
|
|
|
|
|
2014-11-15 15:04:04 -06:00
|
|
|
#![feature(unboxed_closures)]
|
2014-08-19 15:56:38 -05:00
|
|
|
|
|
|
|
fn main() {
|
2014-11-20 11:12:38 -06:00
|
|
|
let task: Box<Fn(int) -> int> = box |&: x| x;
|
|
|
|
task.call((0i, ));
|
|
|
|
|
|
|
|
let mut task: Box<FnMut(int) -> int> = box |&mut: x| x;
|
2015-01-05 13:07:10 -06:00
|
|
|
task(0i);
|
2014-11-20 11:12:38 -06:00
|
|
|
|
|
|
|
call(|:x| x, 22);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call<F:FnOnce(int) -> int>(f: F, x: int) -> int {
|
2015-01-05 13:07:10 -06:00
|
|
|
f(x)
|
2014-08-19 15:56:38 -05:00
|
|
|
}
|
|
|
|
|