]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/unboxed-closures-single-word-env.rs
rollup merge of #17355 : gamazeps/issue17210
[rust.git] / src / test / run-pass / unboxed-closures-single-word-env.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Ensures that single-word environments work right in unboxed closures.
12 // These take a different path in codegen.
13
14 #![feature(overloaded_calls, unboxed_closures)]
15
16 fn a<F:Fn(int, int) -> int>(f: F) -> int {
17     f(1, 2)
18 }
19
20 fn b<F:FnMut(int, int) -> int>(mut f: F) -> int {
21     f(3, 4)
22 }
23
24 fn c<F:FnOnce(int, int) -> int>(f: F) -> int {
25     f(5, 6)
26 }
27
28 fn main() {
29     let z = 10;
30     assert_eq!(a(|&: x: int, y| x + y + z), 13);
31     assert_eq!(b(|&mut: x: int, y| x + y + z), 17);
32     assert_eq!(c(|: x: int, y| x + y + z), 21);
33 }
34