mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			342 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			342 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    uint[] x;
 | 
						|
    fallback() external {
 | 
						|
        assembly {
 | 
						|
            x_slot := 1
 | 
						|
            x_offset := 2
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// TypeError 4713: (84-90): State variables cannot be assigned to - you have to use "sstore()".
 | 
						|
// TypeError 4713: (108-116): State variables cannot be assigned to - you have to use "sstore()".
 |