mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			277 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			277 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| 
 | |
| trait Usizer {
 | |
|     fn m(self) -> usize;
 | |
| }
 | |
| 
 | |
| fn f<const N: usize>(u: impl Usizer) -> usize {
 | |
|     N + u.m()
 | |
| }
 | |
| 
 | |
| struct Usizable;
 | |
| 
 | |
| impl Usizer for Usizable {
 | |
|     fn m(self) -> usize {
 | |
|         16
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     assert_eq!(f::<4usize>(Usizable), 20usize);
 | |
| }
 | 
