mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			310 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			310 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     uint[] x;
 | |
|     function() external {
 | |
|         uint[] storage y = x;
 | |
|         assembly {
 | |
|             y_slot := 1
 | |
|             y_offset := 2
 | |
|         }
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // TypeError: (114-120): Storage variables cannot be assigned to.
 | |
| // TypeError: (138-146): Storage variables cannot be assigned to.
 |