mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
243 B
Rust
12 lines
243 B
Rust
// run-pass
|
|
|
|
struct Recbox<T> {x: Box<T>}
|
|
|
|
fn reclift<T>(t: T) -> Recbox<T> { return Recbox { x: Box::new(t) }; }
|
|
|
|
pub fn main() {
|
|
let foo: isize = 17;
|
|
let rbfoo: Recbox<isize> = reclift::<isize>(foo);
|
|
assert_eq!(*rbfoo.x, foo);
|
|
}
|