rust/src/test/run-pass/issue-4735.rs

32 lines
889 B
Rust
Raw Normal View History

2013-05-23 20:27:34 -05:00
// Copyright 2013 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.
2014-02-26 11:58:41 -06:00
// ignore-fast doesn't like extern crate
extern crate libc;
2013-05-23 20:27:34 -05:00
2013-05-27 19:32:03 -05:00
use std::cast::transmute;
2014-02-26 11:58:41 -06:00
use libc::c_void;
2013-05-23 20:27:34 -05:00
struct NonCopyable(*c_void);
impl Drop for NonCopyable {
2013-09-16 20:18:07 -05:00
fn drop(&mut self) {
let NonCopyable(p) = *self;
let _v = unsafe { transmute::<*c_void, Box<int>>(p) };
2013-05-23 20:27:34 -05:00
}
}
pub fn main() {
let t = box 0;
let p = unsafe { transmute::<Box<int>, *c_void>(t) };
2013-08-17 10:37:42 -05:00
let _z = NonCopyable(p);
2013-05-23 20:27:34 -05:00
}