30 lines
571 B
Rust
30 lines
571 B
Rust
|
#![feature(box_syntax)]
|
||
|
|
||
|
struct DroppableStruct;
|
||
|
|
||
|
static mut DROPPED: bool = false;
|
||
|
|
||
|
impl Drop for DroppableStruct {
|
||
|
fn drop(&mut self) {
|
||
|
unsafe { DROPPED = true; }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
trait MyTrait { fn dummy(&self) { } }
|
||
|
impl MyTrait for Box<DroppableStruct> {}
|
||
|
|
||
|
struct Whatever { w: Box<MyTrait+'static> }
|
||
|
impl Whatever {
|
||
|
fn new(w: Box<MyTrait+'static>) -> Whatever {
|
||
|
Whatever { w: w }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
{
|
||
|
let f: Box<_> = box DroppableStruct;
|
||
|
let _a = Whatever::new(box f as Box<MyTrait>);
|
||
|
}
|
||
|
assert!(unsafe { DROPPED });
|
||
|
}
|