60ae1590af
And remove support for the old syntax
6 lines
88 B
Rust
6 lines
88 B
Rust
|
|
|
|
fn f<T: copy>(t: T) { let t1: T = t; }
|
|
|
|
fn main() { let x = {x: @10, y: @12}; f(x); }
|