mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
19 lines
331 B
Rust
19 lines
331 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
|
|
struct Triple {a: isize, b: isize, c: isize}
|
|
|
|
fn test(foo: Box<Triple>) -> Box<Triple> {
|
|
let foo = foo;
|
|
let bar = foo;
|
|
let baz = bar;
|
|
let quux = baz;
|
|
return quux;
|
|
}
|
|
|
|
pub fn main() {
|
|
let x = Box::new(Triple{a: 1, b: 2, c: 3});
|
|
let y = test(x);
|
|
assert_eq!(y.c, 3);
|
|
}
|