mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			248 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			248 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // Encountered while testing #44614.
 | |
| // build-pass (FIXME(62277): could be check-pass?)
 | |
| 
 | |
| pub fn main() {
 | |
|     // Constant of generic type (int)
 | |
|     const X: &'static u32 = &22;
 | |
|     assert_eq!(0, match &22 {
 | |
|         X => 0,
 | |
|         _ => 1,
 | |
|     });
 | |
| }
 | 
