6 lines
70 B
Rust
6 lines
70 B
Rust
|
|
||
|
|
||
|
fn leaky<T>(t: T) { }
|
||
|
|
||
|
fn main() { let x = ~10; leaky::<~int>(x); }
|