mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			753 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			753 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     uint[] data;
 | |
| 
 | |
|     function len() public returns (uint ret) {
 | |
|         data.push(234);
 | |
|         data.push(123);
 | |
|         delete data;
 | |
|         assembly {
 | |
|             ret := sload(data.slot)
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function val() public returns (uint ret) {
 | |
|         assembly {
 | |
|             sstore(0, 2)
 | |
|             mstore(0, 0)
 | |
|             sstore(keccak256(0, 32), 234)
 | |
|             sstore(add(keccak256(0, 32), 1), 123)
 | |
|         }
 | |
| 
 | |
|         assert(data[0] == 234);
 | |
|         assert(data[1] == 123);
 | |
| 
 | |
|         delete data;
 | |
| 
 | |
|         uint size = 999;
 | |
| 
 | |
|         assembly {
 | |
|             size := sload(0)
 | |
|             mstore(0, 0)
 | |
|             ret := sload(keccak256(0, 32))
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| // ====
 | |
| // compileViaYul: also
 | |
| // ----
 | |
| // len() -> 0
 | |
| // val() -> 0
 |