mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			245 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			245 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     uint[] s;
 | |
|     function f() internal returns (uint[] storage a)
 | |
|     {
 | |
|         a[0] = 0;
 | |
|         a = s;
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // TypeError: (94-95): This variable is of storage pointer type and can be accessed without prior assignment.
 |