2018-08-30 12:18:55 +00:00
|
|
|
// run-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(dead_code)]
|
2013-06-20 19:11:47 +00:00
|
|
|
// Test that we do not leak when the arg pattern must drop part of the
|
|
|
|
// argument (in this case, the `y` field).
|
|
|
|
|
2015-01-08 01:25:56 +00:00
|
|
|
#![feature(box_syntax)]
|
2014-05-06 01:56:44 +00:00
|
|
|
|
2013-06-20 19:11:47 +00:00
|
|
|
struct Foo {
|
2015-03-26 00:06:52 +00:00
|
|
|
x: Box<usize>,
|
|
|
|
y: Box<usize>,
|
2013-06-20 19:11:47 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 00:06:52 +00:00
|
|
|
fn foo(Foo {x, ..}: Foo) -> *const usize {
|
|
|
|
let addr: *const usize = &*x;
|
2013-06-20 19:11:47 +00:00
|
|
|
addr
|
|
|
|
}
|
|
|
|
|
2013-09-25 07:43:37 +00:00
|
|
|
pub fn main() {
|
2015-02-17 20:41:32 +00:00
|
|
|
let obj: Box<_> = box 1;
|
2015-03-26 00:06:52 +00:00
|
|
|
let objptr: *const usize = &*obj;
|
2014-05-06 01:56:44 +00:00
|
|
|
let f = Foo {x: obj, y: box 2};
|
2013-06-20 19:11:47 +00:00
|
|
|
let xptr = foo(f);
|
|
|
|
assert_eq!(objptr, xptr);
|
2013-09-25 07:43:37 +00:00
|
|
|
}
|