]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/close-over-big-then-small-data.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / close-over-big-then-small-data.rs
1 // Copyright 2012 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 // If we use GEPi rather than GEP_tup_like when
12 // storing closure data (as we used to do), the u64 would
13 // overwrite the u16.
14
15 #![allow(unknown_features)]
16 #![feature(box_syntax)]
17
18 struct Pair<A,B> {
19     a: A, b: B
20 }
21
22 struct Invoker<A> {
23     a: A,
24     b: u16,
25 }
26
27 trait Invokable<A> {
28     fn f(&self) -> (A, u16);
29 }
30
31 impl<A:Clone> Invokable<A> for Invoker<A> {
32     fn f(&self) -> (A, u16) {
33         (self.a.clone(), self.b)
34     }
35 }
36
37 fn f<A:Clone + 'static>(a: A, b: u16) -> Box<Invokable<A>+'static> {
38     box Invoker {
39         a: a,
40         b: b,
41     } as (Box<Invokable<A>+'static>)
42 }
43
44 pub fn main() {
45     let (a, b) = f(22_u64, 44u16).f();
46     println!("a={} b={}", a, b);
47     assert_eq!(a, 22u64);
48     assert_eq!(b, 44u16);
49 }