6 lines
72 B
Rust
6 lines
72 B
Rust
|
|
|
|
fn f<T>(x: @T) -> @T { ret x; }
|
|
|
|
fn main() { let x = f(@3); log *x; }
|