mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			205 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			205 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // https://github.com/rust-lang/rust/issues/16019
 | |
| 
 | |
| macro_rules! define_struct {
 | |
|     ($rounds:expr) => (
 | |
|         struct Struct {
 | |
|             sk: [u32; $rounds + 1]
 | |
|         }
 | |
|         )
 | |
| }
 | |
| 
 | |
| define_struct!(2);
 | 
