60ae1590af
And remove support for the old syntax
13 lines
231 B
Rust
13 lines
231 B
Rust
|
|
|
|
type box<T: copy> = {c: @T};
|
|
|
|
fn unbox<T: copy>(b: box<T>) -> T { ret *b.c; }
|
|
|
|
fn main() {
|
|
let foo: int = 17;
|
|
let bfoo: box<int> = {c: @foo};
|
|
#debug("see what's in our box");
|
|
assert (unbox::<int>(bfoo) == foo);
|
|
}
|