2013-06-20 14:11:47 -05: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 {
|
|
|
|
x: ~uint,
|
|
|
|
y: ~uint,
|
|
|
|
}
|
|
|
|
|
2013-11-28 14:22:53 -06:00
|
|
|
fn foo(Foo {x, ..}: Foo) -> *uint {
|
2013-06-20 14:11:47 -05:00
|
|
|
let addr: *uint = &*x;
|
|
|
|
addr
|
|
|
|
}
|
|
|
|
|
2013-09-25 02:43:37 -05:00
|
|
|
pub fn main() {
|
2013-06-20 14:11:47 -05:00
|
|
|
let obj = ~1;
|
|
|
|
let objptr: *uint = &*obj;
|
|
|
|
let f = Foo {x: obj, y: ~2};
|
|
|
|
let xptr = foo(f);
|
|
|
|
assert_eq!(objptr, xptr);
|
2013-09-25 02:43:37 -05:00
|
|
|
}
|