mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			213 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			213 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| extern "C" {
 | |
|     fn foo<const X: usize>(); //~ ERROR foreign items may not have const parameters
 | |
| 
 | |
|     fn bar<T, const X: usize>(_: T); //~ ERROR foreign items may not have type or const parameters
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
