mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			240 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			240 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract Test {
 | |
|     struct MyStructName1 {
 | |
|         address addr;
 | |
|         uint256 count;
 | |
|         MyStructName2 x;
 | |
|     }
 | |
|     struct MyStructName2 {
 | |
|         MyStructName1 x;
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // TypeError: (20-118): Recursive struct definition.
 |