]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/objects-owned-object-borrowed-method-headerless.rs
Account for --remap-path-prefix in save-analysis
[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
16 #![allow(unknown_features)]
17 #![feature(box_syntax)]
18
19
20 trait FooTrait {
21     fn foo(&self) -> usize;
22 }
23
24 struct BarStruct {
25     x: usize
26 }
27
28 impl FooTrait for BarStruct {
29     fn foo(&self) -> usize {
30         self.x
31     }
32 }
33
34 pub fn main() {
35     let foos: Vec<Box<FooTrait>> = vec![
36         box BarStruct{ x: 0 } as Box<FooTrait>,
37         box BarStruct{ x: 1 } as Box<FooTrait>,
38         box BarStruct{ x: 2 } as Box<FooTrait>
39     ];
40
41     for i in 0..foos.len() {
42         assert_eq!(i, foos[i].foo());
43     }
44 }