mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			259 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			259 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| #![allow(dead_code)]
 | |
| 
 | |
| enum E {
 | |
|     Foo{f : isize},
 | |
|     Bar
 | |
| }
 | |
| 
 | |
| pub fn main() {
 | |
|     let e = E::Foo{f: 1};
 | |
|     match e {
 | |
|         E::Foo{..} => (),
 | |
|         _ => panic!(),
 | |
|     }
 | |
|     match e {
 | |
|         E::Foo{f: _f} => (),
 | |
|         _ => panic!(),
 | |
|     }
 | |
| }
 | 
