mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-10-31 20:00:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			175 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			175 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![deny(non_snake_case)]
 | |
| #![allow(dead_code)]
 | |
| 
 | |
| mod FooBar { //~ ERROR module `FooBar` should have a snake case name
 | |
|     pub struct S;
 | |
| }
 | |
| 
 | |
| fn f(_: FooBar::S) { }
 | |
| 
 | |
| fn main() { }
 | 
