mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			291 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			291 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// When denying at the crate level, be sure to not get random warnings from the
 | 
						|
// injected intrinsics by the compiler.
 | 
						|
 | 
						|
#![deny(unused_attributes)]
 | 
						|
 | 
						|
mod a {
 | 
						|
    #![crate_type = "bin"] //~ ERROR should be in the root module
 | 
						|
}
 | 
						|
 | 
						|
#[crate_type = "bin"] fn main() {} //~ ERROR should be an inner
 |