cfdf193c46
Closes #1067
5 lines
71 B
Rust
5 lines
71 B
Rust
|
|
fn f<T>(x: ~T) -> ~T { ret x; }
|
|
|
|
fn main() { let x = f(~3); log *x; }
|