mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			157 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			157 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![deny(unused)]
 | |
| 
 | |
| struct F;
 | |
| struct B;
 | |
| 
 | |
| enum E {
 | |
|     Foo(F),
 | |
|     Bar(B), //~ ERROR variant `Bar` is never constructed
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let _ = E::Foo(F);
 | |
| }
 | 
