2013-10-23 04:49:18 -04:00
|
|
|
#[feature(managed_boxes)];
|
|
|
|
|
2013-03-20 18:18:57 -07:00
|
|
|
struct Foo {
|
2013-12-31 15:46:27 -08:00
|
|
|
f: @int,
|
2013-03-20 18:18:57 -07:00
|
|
|
}
|
|
|
|
|
2013-06-06 18:54:14 -07:00
|
|
|
impl Drop for Foo { //~ ERROR cannot implement a destructor on a structure that does not satisfy Send
|
2013-09-16 21:18:07 -04:00
|
|
|
fn drop(&mut self) {
|
2013-03-20 18:18:57 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|