]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/objects-owned-object-borrowed-method-header.rs
Ignore tests broken by failing on ICE
[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
16 // Test invoked `&self` methods on owned objects where the values
17 // closed over contain managed values. This implies that the ~ boxes
18 // will have headers that must be skipped over.
19
20 trait FooTrait {
21     fn foo(&self) -> uint;
22 }
23
24 struct BarStruct {
25     x: @uint
26 }
27
28 impl FooTrait for BarStruct {
29     fn foo(&self) -> uint {
30         *self.x
31     }
32 }
33
34 pub fn main() {
35     let foos: Vec<~FooTrait:> = vec!(
36         ~BarStruct{ x: @0 } as ~FooTrait:,
37         ~BarStruct{ x: @1 } as ~FooTrait:,
38         ~BarStruct{ x: @2 } as ~FooTrait:
39     );
40
41     for i in range(0u, foos.len()) {
42         assert_eq!(i, foos.get(i).foo());
43     }
44 }