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.
|
|
|
|
|
|
|
|
|
2013-05-27 19:32:03 -05:00
|
|
|
use std::cast::transmute;
|
|
|
|
use std::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) {
|
2013-05-23 20:27:34 -05:00
|
|
|
let p = **self;
|
2013-08-17 10:37:42 -05:00
|
|
|
let _v = unsafe { transmute::<*c_void, ~int>(p) };
|
2013-05-23 20:27:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let t = ~0;
|
|
|
|
let p = unsafe { transmute::<~int, *c_void>(t) };
|
2013-08-17 10:37:42 -05:00
|
|
|
let _z = NonCopyable(p);
|
2013-05-23 20:27:34 -05:00
|
|
|
}
|