mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			216 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			216 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(generic_const_exprs)]
 | |
| #![allow(incomplete_features)]
 | |
| 
 | |
| fn test<const N: usize>() -> [u8; N - 1] {
 | |
|     //~^ ERROR evaluation of `test::<0>::{constant#0}` failed
 | |
|     todo!()
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     test::<0>();
 | |
| }
 | 
