60ae1590af
And remove support for the old syntax
5 lines
85 B
Rust
5 lines
85 B
Rust
|
|
fn f<T: copy>(x: ~T) -> ~T { ret x; }
|
|
|
|
fn main() { let x = f(~3); log(debug, *x); }
|