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