mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error: generic parameters may not be used in const operations
 | 
						|
  --> $DIR/param-in-ct-in-ty-param-default.rs:1:44
 | 
						|
   |
 | 
						|
LL | struct Foo<T, U = [u8; std::mem::size_of::<T>()]>(T, U);
 | 
						|
   |                                            ^ cannot perform const operation using `T`
 | 
						|
   |
 | 
						|
   = note: type parameters may not be used in const expressions
 | 
						|
   = help: add `#![feature(generic_const_exprs)]` to allow generic const expressions
 | 
						|
 | 
						|
error: aborting due to 1 previous error
 | 
						|
 |