]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/cleanup-rvalue-during-if-and-while.rs
89b001020813215397894bdd94be159df0cdf287
[rust.git] / src / test / run-pass / cleanup-rvalue-during-if-and-while.rs
1 // Copyright 2014 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
12 // This test verifies that temporaries created for `while`'s and `if`
13 // conditions are dropped after the condition is evaluated.
14
15
16 struct Temporary;
17
18 static mut DROPPED: int = 0;
19
20 impl Drop for Temporary {
21     fn drop(&mut self) {
22         unsafe { DROPPED += 1; }
23     }
24 }
25
26 impl Temporary {
27     fn do_stuff(&self) -> bool {true}
28 }
29
30 fn borrow() -> Box<Temporary> { box Temporary }
31
32
33 pub fn main() {
34     let mut i = 0;
35
36     // This loop's condition
37     // should call `Temporary`'s
38     // `drop` 6 times.
39     while borrow().do_stuff() {
40         i += 1;
41         unsafe { assert_eq!(DROPPED, i) }
42         if i > 5 {
43             break;
44         }
45     }
46
47     // This if condition should
48     // call it 1 time
49     if borrow().do_stuff() {
50         unsafe { assert_eq!(DROPPED, i + 1) }
51     }
52 }