]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/cleanup-rvalue-during-if-and-while.rs
Ignore tests broken by failing on ICE
[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 struct Temporary;
16
17 static mut DROPPED: int = 0;
18
19 impl Drop for Temporary {
20     fn drop(&mut self) {
21         unsafe { DROPPED += 1; }
22     }
23 }
24
25 impl Temporary {
26     fn do_stuff(&self) -> bool {true}
27 }
28
29 fn borrow() -> ~Temporary { ~Temporary }
30
31
32 pub fn main() {
33     let mut i = 0;
34
35     // This loop's condition
36     // should call `Temporary`'s
37     // `drop` 6 times.
38     while borrow().do_stuff() {
39         i += 1;
40         unsafe { assert_eq!(DROPPED, i) }
41         if i > 5 {
42             break;
43         }
44     }
45
46     // This if condition should
47     // call it 1 time
48     if borrow().do_stuff() {
49         unsafe { assert_eq!(DROPPED, i + 1) }
50     }
51 }