rust/src/test/run-pass/box-unbox.rs
2011-01-27 13:52:02 -08:00

11 lines
201 B
Rust

type box[T] = tup(@T);
fn unbox[T](&box[T] b) -> T { ret *b._0; }
fn main() {
let int foo = 17;
let box[int] bfoo = tup(@foo);
log "see what's in our box";
check (unbox[int](bfoo) == foo);
}