]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/objects-owned-object-borrowed-method-header.rs
7a0c7b34d2f3705e2371a3acd822d82f4a33022e
[rust.git] / src / test / run-pass / objects-owned-object-borrowed-method-header.rs
1 // ignore-pretty
2
3 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 #[feature(managed_boxes)];
14
15 // Test invoked `&self` methods on owned objects where the values
16 // closed over contain managed values. This implies that the ~ boxes
17 // will have headers that must be skipped over.
18
19 trait FooTrait {
20     fn foo(&self) -> uint;
21 }
22
23 struct BarStruct {
24     x: @uint
25 }
26
27 impl FooTrait for BarStruct {
28     fn foo(&self) -> uint {
29         *self.x
30     }
31 }
32
33 pub fn main() {
34     let foos: vec!( ~FooTrait: ) = vec!(
35         ~BarStruct{ x: @0 } as ~FooTrait:,
36         ~BarStruct{ x: @1 } as ~FooTrait:,
37         ~BarStruct{ x: @2 } as ~FooTrait:
38     );
39
40     for i in range(0u, foos.len()) {
41         assert_eq!(i, foos[i].foo());
42     }
43 }