]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/cleanup-arm-conditional.rs
65ad68ba702f4d5ebc69297206c172f25e4a2265
[rust.git] / src / test / run-pass / cleanup-arm-conditional.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 // copyright 2014 the rust project developers. see the copyright
12 // file at the top-level directory of this distribution and at
13 // http://rust-lang.org/copyright.
14 //
15 // licensed under the apache license, version 2.0 <license-apache or
16 // http://www.apache.org/licenses/license-2.0> or the mit license
17 // <license-mit or http://opensource.org/licenses/mit>, at your
18 // option. this file may not be copied, modified, or distributed
19 // except according to those terms.
20
21 // Test that cleanup scope for temporaries created in a match
22 // arm is confined to the match arm itself.
23
24 use std::os;
25
26 struct Test { x: int }
27
28 impl Test {
29     fn get_x(&self) -> Option<Box<int>> {
30         Some(box self.x)
31     }
32 }
33
34 fn do_something(t: &Test) -> int {
35
36     // The cleanup scope for the result of `t.get_x()` should be the
37     // arm itself and not the match, otherwise we'll (potentially) get
38     // a crash trying to free an uninitialized stack slot.
39
40     match t {
41         &Test { x: 2 } if t.get_x().is_some() => {
42             t.x * 2
43         }
44         _ => { 22 }
45     }
46 }
47
48 pub fn main() {
49     let t = Test { x: 1 };
50     do_something(&t);
51 }
52