Files
rust/src/test/run-pass/objects-owned-object-owned-method.rs

25 lines
502 B
Rust
Raw Normal View History

// Test invoked `&self` methods on owned objects where the values
// closed over contain managed values. This implies that the boxes
// will have headers that must be skipped over.
#![feature(box_syntax)]
trait FooTrait {
fn foo(self: Box<Self>) -> usize;
}
struct BarStruct {
x: usize
}
impl FooTrait for BarStruct {
fn foo(self: Box<BarStruct>) -> usize {
self.x
}
}
pub fn main() {
2014-06-14 11:03:34 -07:00
let foo = box BarStruct{ x: 22 } as Box<FooTrait>;
assert_eq!(22, foo.foo());
}