mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			183 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			183 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // check-pass
 | |
| 
 | |
| #![allow(incomplete_features)]
 | |
| #![feature(generic_const_exprs)]
 | |
| #![feature(adt_const_params)]
 | |
| 
 | |
| struct Foo<const A: [(); 0 + 0]> where [(); 0 + 0]: Sized;
 | |
| 
 | |
| fn main() {}
 | 
