2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2013-06-20 15:11:47 -04:00
|
|
|
// Test that we do not leak when the arg pattern must drop part of the
|
|
|
|
// argument (in this case, the `y` field).
|
|
|
|
|
|
|
|
struct Foo {
|
2015-03-25 17:06:52 -07:00
|
|
|
x: Box<usize>,
|
|
|
|
y: Box<usize>,
|
2013-06-20 15:11:47 -04:00
|
|
|
}
|
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
fn foo(Foo {x, ..}: Foo) -> *const usize {
|
|
|
|
let addr: *const usize = &*x;
|
2013-06-20 15:11:47 -04:00
|
|
|
addr
|
|
|
|
}
|
|
|
|
|
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;
|
2021-08-25 02:39:40 +02:00
|
|
|
let f = Foo { x: obj, y: Box::new(2) };
|
2013-06-20 15:11:47 -04:00
|
|
|
let xptr = foo(f);
|
|
|
|
assert_eq!(objptr, xptr);
|
2013-09-25 00:43:37 -07:00
|
|
|
}
|