mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
9 lines
201 B
Rust
9 lines
201 B
Rust
//@ run-pass
|
|
#![allow(non_camel_case_types)]
|
|
|
|
//@ pretty-expanded FIXME #23616
|
|
|
|
enum clam<T> { a(#[allow(dead_code)] T), }
|
|
|
|
pub fn main() { let c = clam::a(2); match c { clam::a::<isize>(_) => { } } }
|