mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			150 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			150 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| fn const_u32_identity<const X: u32>() -> u32 {
 | |
|     X
 | |
| }
 | |
| 
 | |
|  fn main() {
 | |
|     let val = const_u32_identity::<18>();
 | |
|     assert_eq!(val, 18);
 | |
| }
 | 
