mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			542 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			542 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract Test {
 | |
|         struct RecursiveStruct {
 | |
|                 address payable d ;
 | |
|                 mapping ( uint => address payable ) c ;
 | |
|                 mapping ( uint => address payable [ ] ) d ;
 | |
|         }
 | |
|         function func ( ) private pure {
 | |
|                 RecursiveStruct [ 1 ] memory val ;
 | |
|                 val ;
 | |
|         }
 | |
| }
 | |
| // ----
 | |
| // DeclarationError 2333: (157-198): Identifier already declared.
 | |
| // TypeError 4061: (268-300): Type struct Test.RecursiveStruct[1] is only valid in storage because it contains a (nested) mapping.
 |