2014-09-12 09:45:39 -05:00
|
|
|
// Copyright 2012-2014 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.
|
|
|
|
|
2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2014-09-12 09:45:39 -05:00
|
|
|
// Test that destructor on a struct runs successfully after the struct
|
|
|
|
// is boxed and converted to an object.
|
|
|
|
|
2015-01-07 19:25:56 -06:00
|
|
|
#![feature(box_syntax)]
|
|
|
|
|
2015-03-25 19:06:52 -05:00
|
|
|
static mut value: usize = 0;
|
2014-09-12 09:45:39 -05:00
|
|
|
|
|
|
|
struct Cat {
|
2015-03-25 19:06:52 -05:00
|
|
|
name : usize,
|
2014-09-12 09:45:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
trait Dummy {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn get(&self) -> usize;
|
2014-09-12 09:45:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Dummy for Cat {
|
2015-03-25 19:06:52 -05:00
|
|
|
fn get(&self) -> usize { self.name }
|
2014-09-12 09:45:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Cat {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe { value = self.name; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
{
|
|
|
|
let x = box Cat {name: 22};
|
|
|
|
let nyan: Box<Dummy> = x as Box<Dummy>;
|
|
|
|
}
|
|
|
|
unsafe {
|
|
|
|
assert_eq!(value, 22);
|
|
|
|
}
|
|
|
|
}
|