mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			220 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			220 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| // tests that promoting expressions containing const parameters is allowed.
 | |
| fn promotion_test<const N: usize>() -> &'static usize {
 | |
|     &(3 + N)
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     assert_eq!(promotion_test::<13>(), &16);
 | |
| }
 | 
