mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 14:04:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			267 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			267 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// Checks what happens when `public` is used instead of the correct, `pub`
 | 
						|
// edition:2018
 | 
						|
// run-rustfix
 | 
						|
public struct X;
 | 
						|
//~^ ERROR expected one of `!` or `::`, found keyword `struct`
 | 
						|
//~^^ HELP write `pub` instead of `public` to make the item public
 | 
						|
 | 
						|
fn main() {}
 |