blob: fecbeed407c0359b749a333eff8b00af5354eeea [file] [log] [blame]
// 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.
#![feature(unsafe_no_drop_flag)]
static mut destructions : isize = 3;
pub fn foo() {
#[unsafe_no_drop_flag]
struct Foo;
impl Drop for Foo {
fn drop(&mut self) {
unsafe { destructions -= 1 };
}
};
let _x = [Foo, Foo, Foo];
}
pub fn main() {
foo();
assert_eq!(unsafe { destructions }, 0);
}