]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/func-arg-ref-pattern.rs
bb4be948a5ee02449e8b4739c3407a287f496a44
[rust.git] / src / test / run-pass / func-arg-ref-pattern.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 // exec-env:RUST_POISON_ON_FREE=1
12
13 // Test argument patterns where we create refs to the inside of
14 // boxes. Make sure that we don't free the box as we match the
15 // pattern.
16
17
18 fn getaddr(box ref x: Box<uint>) -> *uint {
19     let addr: *uint = &*x;
20     addr
21 }
22
23 fn checkval(box ref x: Box<uint>) -> uint {
24     *x
25 }
26
27 pub fn main() {
28     let obj = box 1;
29     let objptr: *uint = &*obj;
30     let xptr = getaddr(obj);
31     assert_eq!(objptr, xptr);
32
33     let obj = box 22;
34     assert_eq!(checkval(obj), 22);
35 }