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