2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2013-06-20 15:11:47 -04:00
|
|
|
|
2014-05-05 18:56:44 -07:00
|
|
|
// Test argument patterns where we create refs to the inside of
|
2013-06-20 15:11:47 -04:00
|
|
|
// boxes. Make sure that we don't free the box as we match the
|
|
|
|
// pattern.
|
|
|
|
|
2015-02-10 22:52:00 +01:00
|
|
|
#![feature(box_patterns)]
|
2014-05-05 18:56:44 -07:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn getaddr(box ref x: Box<usize>) -> *const usize {
|
|
|
|
let addr: *const usize = &*x;
|
2013-06-20 15:11:47 -04:00
|
|
|
addr
|
|
|
|
}
|
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn checkval(box ref x: Box<usize>) -> usize {
|
2013-06-20 15:11:47 -04:00
|
|
|
*x
|
|
|
|
}
|
|
|
|
|
2013-09-25 00:43:37 -07:00
|
|
|
pub fn main() {
|
2021-08-25 02:39:40 +02:00
|
|
|
let obj: Box<_> = Box::new(1);
|
2015-03-25 17:06:52 -07:00
|
|
|
let objptr: *const usize = &*obj;
|
2013-06-20 15:11:47 -04:00
|
|
|
let xptr = getaddr(obj);
|
|
|
|
assert_eq!(objptr, xptr);
|
|
|
|
|
2021-08-25 02:39:40 +02:00
|
|
|
let obj = Box::new(22);
|
2013-06-20 15:11:47 -04:00
|
|
|
assert_eq!(checkval(obj), 22);
|
|
|
|
}
|