]> git.lizzy.rs Git - rust.git/blob - src/test/run-fail/mir_dynamic_drops_2.rs
Move parse-fail tests to UI
[rust.git] / src / test / run-fail / mir_dynamic_drops_2.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // error-pattern:drop 1
12 // ignore-cloudabi no std::process
13
14 /// Structure which will not allow to be dropped twice.
15 struct Droppable<'a>(&'a mut bool, u32);
16 impl<'a> Drop for Droppable<'a> {
17     fn drop(&mut self) {
18         if *self.0 {
19             eprintln!("{} dropped twice", self.1);
20             ::std::process::exit(1);
21         }
22         eprintln!("drop {}", self.1);
23         *self.0 = true;
24     }
25 }
26
27 fn mir<'a>(d: Droppable<'a>) {
28     loop {
29         let x = d;
30         break;
31     }
32 }
33
34 fn main() {
35     let mut xv = false;
36     mir(Droppable(&mut xv, 1));
37     panic!();
38 }