]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/alignment-gep-tup-like-1.rs
Account for --remap-path-prefix in save-analysis
[rust.git] / src / test / run-pass / alignment-gep-tup-like-1.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 #![allow(unknown_features)]
12 #![feature(box_syntax)]
13
14 struct pair<A,B> {
15     a: A, b: B
16 }
17
18 trait Invokable<A> {
19     fn f(&self) -> (A, u16);
20 }
21
22 struct Invoker<A> {
23     a: A,
24     b: u16,
25 }
26
27 impl<A:Clone> Invokable<A> for Invoker<A> {
28     fn f(&self) -> (A, u16) {
29         (self.a.clone(), self.b)
30     }
31 }
32
33 fn f<A:Clone + 'static>(a: A, b: u16) -> Box<Invokable<A>+'static> {
34     box Invoker {
35         a: a,
36         b: b,
37     } as (Box<Invokable<A>+'static>)
38 }
39
40 pub fn main() {
41     let (a, b) = f(22_u64, 44u16).f();
42     println!("a={} b={}", a, b);
43     assert_eq!(a, 22u64);
44     assert_eq!(b, 44u16);
45 }