blob: cba12e9199b2966925db31d2d692f14f8d0664cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// 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,
}
fn foo(Foo {x, ..}: Foo) -> *uint {
let addr: *uint = &*x;
addr
}
pub fn main() {
let obj = ~1;
let objptr: *uint = &*obj;
let f = Foo {x: obj, y: ~2};
let xptr = foo(f);
assert_eq!(objptr, xptr);
}
|