2013-06-22 02:37:40 -05:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2013-08-11 12:58:48 -05:00
|
|
|
// Test invoked `&self` methods on owned objects where the values
|
2014-05-05 20:56:44 -05:00
|
|
|
// closed over do not contain managed values, and thus the boxes do
|
2013-08-11 12:58:48 -05:00
|
|
|
// not have headers.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2015-01-07 19:25:56 -06:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2014-03-05 17:28:08 -06:00
|
|
|
|
2013-06-22 02:37:40 -05:00
|
|
|
trait FooTrait {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn foo(&self) -> usize;
|
2013-06-22 02:37:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct BarStruct {
|
2015-03-25 19:06:52 -05:00
|
|
|
x: usize
|
2013-06-22 02:37:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl FooTrait for BarStruct {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn foo(&self) -> usize {
|
2013-06-22 02:37:40 -05:00
|
|
|
self.x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2014-05-05 20:56:44 -05:00
|
|
|
let foos: Vec<Box<FooTrait>> = vec!(
|
|
|
|
box BarStruct{ x: 0 } as Box<FooTrait>,
|
|
|
|
box BarStruct{ x: 1 } as Box<FooTrait>,
|
|
|
|
box BarStruct{ x: 2 } as Box<FooTrait>
|
2014-03-05 16:02:44 -06:00
|
|
|
);
|
2013-06-22 02:37:40 -05:00
|
|
|
|
2015-03-03 02:42:26 -06:00
|
|
|
for i in 0..foos.len() {
|
2014-10-15 01:05:01 -05:00
|
|
|
assert_eq!(i, foos[i].foo());
|
2013-06-22 02:37:40 -05:00
|
|
|
}
|
|
|
|
}
|