mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			301 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			301 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| // compile-flags: -Zmir-opt-level=3
 | |
| 
 | |
| // regression test for #102124
 | |
| 
 | |
| const L: usize = 4;
 | |
| 
 | |
| pub trait Print<const N: usize> {
 | |
|     fn print(&self) -> usize {
 | |
|         N
 | |
|     }
 | |
| }
 | |
| 
 | |
| pub struct Printer;
 | |
| impl Print<L> for Printer {}
 | |
| 
 | |
| fn main() {
 | |
|     let p = Printer;
 | |
|     assert_eq!(p.print(), 4);
 | |
| }
 | 
