mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
46 lines
773 B
Rust
46 lines
773 B
Rust
// run-pass
|
|
#![feature(box_patterns)]
|
|
|
|
use std::ops::{Deref, DerefMut};
|
|
|
|
struct X(Box<isize>);
|
|
|
|
static mut DESTRUCTOR_RAN: bool = false;
|
|
|
|
impl Drop for X {
|
|
fn drop(&mut self) {
|
|
unsafe {
|
|
assert!(!DESTRUCTOR_RAN);
|
|
DESTRUCTOR_RAN = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Deref for X {
|
|
type Target = isize;
|
|
|
|
fn deref(&self) -> &isize {
|
|
let &X(box ref x) = self;
|
|
x
|
|
}
|
|
}
|
|
|
|
impl DerefMut for X {
|
|
fn deref_mut(&mut self) -> &mut isize {
|
|
let &mut X(box ref mut x) = self;
|
|
x
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
{
|
|
let mut test = X(Box::new(5));
|
|
{
|
|
let mut change = || { *test = 10 };
|
|
change();
|
|
}
|
|
assert_eq!(*test, 10);
|
|
}
|
|
assert!(unsafe { DESTRUCTOR_RAN });
|
|
}
|