6 lines
80 B
Rust
6 lines
80 B
Rust
|
|
|
|
enum clam<T> { a(T), }
|
|
|
|
fn main() { let c = a(2); alt c { a::<int>(_) { } } }
|