mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			277 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			277 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| // Empty (and reason-only) lint attributes are legal—although we may want to
 | |
| // lint them in the future (Issue #55112).
 | |
| 
 | |
| #![allow()]
 | |
| #![warn(reason = "observationalism")]
 | |
| 
 | |
| #[forbid()]
 | |
| fn devoir() {}
 | |
| 
 | |
| #[deny(reason = "ultion")]
 | |
| fn waldgrave() {}
 | |
| 
 | |
| fn main() {}
 | 
