mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			188 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			188 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| fn foo<T>() -> usize {
 | |
|     const { std::mem::size_of::<T>() }
 | |
| }
 | |
| 
 | |
| fn bar<const N: usize>() -> usize {
 | |
|     const { N + 1 }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     foo::<i32>();
 | |
|     bar::<1>();
 | |
| }
 | 
