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; } |