]> git.lizzy.rs Git - rust.git/blob - src/test/run-fail/mir_dynamic_drops_1.rs
Changed issue number to 36105
[rust.git] / src / test / run-fail / mir_dynamic_drops_1.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 #![feature(rustc_attrs)]
11 // error-pattern:drop 1
12 // error-pattern:drop 2
13 use std::io::{self, Write};
14
15
16 /// Structure which will not allow to be dropped twice.
17 struct Droppable<'a>(&'a mut bool, u32);
18 impl<'a> Drop for Droppable<'a> {
19     fn drop(&mut self) {
20         if *self.0 {
21             writeln!(io::stderr(), "{} dropped twice", self.1);
22             ::std::process::exit(1);
23         }
24         writeln!(io::stderr(), "drop {}", self.1);
25         *self.0 = true;
26     }
27 }
28
29 #[rustc_mir]
30 fn mir() {
31     let (mut xv, mut yv) = (false, false);
32     let x = Droppable(&mut xv, 1);
33     let y = Droppable(&mut yv, 2);
34     let mut z = x;
35     let k = y;
36     z = k;
37 }
38
39 fn main() {
40     mir();
41     panic!();
42 }