mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +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>(_) => { } } }
 | 
