]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/objects-owned-object-borrowed-method-headerless.rs
9cee266c4a7b9f1aa8eabb2052e82268697dca5b
[rust.git] / src / test / run-pass / objects-owned-object-borrowed-method-headerless.rs
1 // Copyright 2013 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 // Test invoked `&self` methods on owned objects where the values
12 // closed over do not contain managed values, and thus the boxes do
13 // not have headers.
14
15 #![allow(unknown_features)]
16 #![feature(box_syntax)]
17
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<Box<FooTrait>> = vec!(
35         box BarStruct{ x: 0 } as Box<FooTrait>,
36         box BarStruct{ x: 1 } as Box<FooTrait>,
37         box BarStruct{ x: 2 } as Box<FooTrait>
38     );
39
40     for i in 0..foos.len() {
41         assert_eq!(i, foos[i].foo());
42     }
43 }