]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/func-arg-ref-pattern.rs
97b136948720e8d2d44f2549e48201e61d503054
[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 #![feature(box_syntax)]
18
19 fn getaddr(box ref x: Box<uint>) -> *const uint {
20     let addr: *const uint = &*x;
21     addr
22 }
23
24 fn checkval(box ref x: Box<uint>) -> uint {
25     *x
26 }
27
28 pub fn main() {
29     let obj = box 1;
30     let objptr: *const uint = &*obj;
31     let xptr = getaddr(obj);
32     assert_eq!(objptr, xptr);
33
34     let obj = box 22;
35     assert_eq!(checkval(obj), 22);
36 }