2020-04-16 06:50:32 +00:00
|
|
|
//@ run-fail
|
2016-01-31 13:07:18 +00:00
|
|
|
//@ error-pattern:drop 1
|
2020-05-07 15:39:02 +00:00
|
|
|
//@ ignore-emscripten no processes
|
2016-01-31 13:07:18 +00:00
|
|
|
|
|
|
|
/// Structure which will not allow to be dropped twice.
|
2016-02-24 18:36:20 +00:00
|
|
|
struct Droppable<'a>(&'a mut bool, u32);
|
|
|
|
impl<'a> Drop for Droppable<'a> {
|
2016-01-31 13:07:18 +00:00
|
|
|
fn drop(&mut self) {
|
2016-02-24 18:36:20 +00:00
|
|
|
if *self.0 {
|
2017-09-25 04:14:56 +00:00
|
|
|
eprintln!("{} dropped twice", self.1);
|
2016-01-31 13:07:18 +00:00
|
|
|
::std::process::exit(1);
|
|
|
|
}
|
2017-09-25 04:14:56 +00:00
|
|
|
eprintln!("drop {}", self.1);
|
2016-02-24 18:36:20 +00:00
|
|
|
*self.0 = true;
|
2016-01-31 13:07:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-27 02:39:36 +00:00
|
|
|
fn mir<'a>(d: Droppable<'a>) {
|
2016-01-31 13:07:18 +00:00
|
|
|
loop {
|
|
|
|
let x = d;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2016-02-24 18:36:20 +00:00
|
|
|
let mut xv = false;
|
|
|
|
mir(Droppable(&mut xv, 1));
|
2016-01-31 13:07:18 +00:00
|
|
|
panic!();
|
|
|
|
}
|