blob: fc43a35f271e121521e78c7f216a38b8caf88f94 [file] [log] [blame] [edit]
//@ run-pass
trait Foo {
fn f(self: Box<Self>);
}
struct S {
x: isize
}
impl Foo for S {
fn f(self: Box<S>) {
assert_eq!(self.x, 3);
}
}
pub fn main() {
let x = Box::new(S { x: 3 });
let y = x as Box<dyn Foo>;
y.f();
}