mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			420 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			420 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| #![allow(non_camel_case_types)]
 | |
| 
 | |
| enum blah { a(isize, isize, #[allow(unused_tuple_struct_fields)] usize), b(isize, isize), c, }
 | |
| 
 | |
| fn or_alt(q: blah) -> isize {
 | |
|     match q { blah::a(x, y, _) | blah::b(x, y) => { return x + y; } blah::c => { return 0; } }
 | |
| }
 | |
| 
 | |
| pub fn main() {
 | |
|     assert_eq!(or_alt(blah::c), 0);
 | |
|     assert_eq!(or_alt(blah::a(10, 100, 0)), 110);
 | |
|     assert_eq!(or_alt(blah::b(20, 200)), 220);
 | |
| }
 | 
