mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			345 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			345 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // ignore-test This is currently broken
 | |
| // revisions: mir thir
 | |
| // [thir]compile-flags: -Z thir-unsafeck
 | |
| 
 | |
| #![allow(incomplete_features)]
 | |
| #![feature(inline_const_pat)]
 | |
| 
 | |
| const unsafe fn require_unsafe() -> usize { 1 }
 | |
| 
 | |
| fn main() {
 | |
|     match () {
 | |
|         const {
 | |
|             require_unsafe();
 | |
|             //~^ ERROR [E0133]
 | |
|         } => (),
 | |
|     }
 | |
| }
 | 
