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 contain managed values. This implies that the boxes
|
2013-08-11 12:58:48 -05:00
|
|
|
// will have headers that must be skipped over.
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
|
2015-01-07 19:25:56 -06:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2013-06-22 02:37:40 -05:00
|
|
|
trait FooTrait {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn foo(self: Box<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: Box<BarStruct>) -> usize {
|
2013-06-22 02:37:40 -05:00
|
|
|
self.x
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
2014-06-14 13:03:34 -05:00
|
|
|
let foo = box BarStruct{ x: 22 } as Box<FooTrait>;
|
2013-08-11 12:58:48 -05:00
|
|
|
assert_eq!(22, foo.foo());
|
2013-06-22 02:37:40 -05:00
|
|
|
}
|