mirror of
				https://git.proxmox.com/git/rustc
				synced 2025-11-04 00:38:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			243 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			243 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// run-pass
 | 
						|
// edition:2021
 | 
						|
 | 
						|
// regression test for https://github.com/rust-lang/rust/pull/85678
 | 
						|
 | 
						|
#![feature(assert_matches)]
 | 
						|
 | 
						|
use std::assert_matches::assert_matches;
 | 
						|
 | 
						|
fn main() {
 | 
						|
    assert!(matches!((), ()));
 | 
						|
    assert_matches!((), ());
 | 
						|
}
 |