rust/tests/ui/mir/mir_dynamic_drops_3.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
816 B
Rust
Raw Normal View History

2020-04-16 06:50:32 +00:00
// run-fail
// needs-unwind
2016-01-31 13:07:18 +00:00
// error-pattern:unwind happens
// error-pattern:drop 3
// error-pattern:drop 2
// 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 {
eprintln!("{} dropped twice", self.1);
2016-01-31 13:07:18 +00:00
::std::process::exit(1);
}
eprintln!("drop {}", self.1);
2016-02-24 18:36:20 +00:00
*self.0 = true;
2016-01-31 13:07:18 +00:00
}
}
2016-02-24 18:36:20 +00:00
fn may_panic<'a>() -> Droppable<'a> {
2016-01-31 13:07:18 +00:00
panic!("unwind happens");
}
2016-05-27 02:39:36 +00:00
fn mir<'a>(d: Droppable<'a>) {
2016-02-24 18:36:20 +00:00
let (mut a, mut b) = (false, false);
let y = Droppable(&mut a, 2);
let x = [Droppable(&mut b, 1), y, d, may_panic()];
2016-01-31 13:07:18 +00:00
}
fn main() {
2016-02-24 18:36:20 +00:00
let mut c = false;
mir(Droppable(&mut c, 3));
2016-01-31 13:07:18 +00:00
}