60ae1590af
And remove support for the old syntax
8 lines
106 B
Rust
8 lines
106 B
Rust
|
|
|
|
tag option<T> { none; some(T); }
|
|
|
|
fn f<T: copy>() -> option<T> { ret none; }
|
|
|
|
fn main() { f::<int>(); }
|