mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			278 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			278 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Checks what happens when `public` is used instead of the correct, `pub`
 | |
| //@ run-rustfix
 | |
| 
 | |
| public enum Test {
 | |
|     //~^ ERROR expected one of `!` or `::`, found keyword `enum`
 | |
|     //~^^ HELP write `pub` instead of `public` to make the item public
 | |
|     A,
 | |
|     B,
 | |
| }
 | |
| 
 | |
| fn main() { }
 | 
