2014-02-05 22:33:10 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
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-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-01-08 01:25:56 +00:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(box_syntax)]
|
2014-05-06 01:56:44 +00:00
|
|
|
|
2013-06-20 19:11:47 +00:00
|
|
|
struct Foo {
|
2014-05-06 01:56:44 +00:00
|
|
|
x: Box<uint>,
|
|
|
|
y: Box<uint>,
|
2013-06-20 19:11:47 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 19:47:34 +00:00
|
|
|
fn foo(Foo {x, ..}: Foo) -> *const uint {
|
|
|
|
let addr: *const uint = &*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;
|
2014-06-25 19:47:34 +00:00
|
|
|
let objptr: *const uint = &*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
|
|
|
}
|