mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			181 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			181 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-rustfix
 | |
| 
 | |
| pub enum struct Range {
 | |
|     //~^ ERROR `enum` and `struct` are mutually exclusive
 | |
|     Valid {
 | |
|         begin: u32,
 | |
|         len: u32,
 | |
|     },
 | |
|     Out,
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
| }
 | 
