mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			340 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			340 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| // revisions: mir thir
 | |
| // [thir]compile-flags: -Z thir-unsafeck
 | |
| #![warn(unused_unsafe)]
 | |
| #![feature(inline_const)]
 | |
| const unsafe fn require_unsafe() -> usize { 1 }
 | |
| 
 | |
| fn main() {
 | |
|     unsafe {
 | |
|         const {
 | |
|             require_unsafe();
 | |
|             unsafe {}
 | |
|             //~^ WARNING unnecessary `unsafe` block
 | |
|         }
 | |
|     }
 | |
| }
 | 
