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