mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			553 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			553 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     uint[] storageArray;
 | |
|     function set_get_length(uint256 len) public returns (uint256) {
 | |
|         while(storageArray.length < len)
 | |
|             storageArray.push();
 | |
|         return storageArray.length;
 | |
|     }
 | |
| }
 | |
| // ====
 | |
| // compileViaYul: true
 | |
| // ----
 | |
| // set_get_length(uint256): 0 -> 0
 | |
| // set_get_length(uint256): 1 -> 1
 | |
| // set_get_length(uint256): 10 -> 10
 | |
| // set_get_length(uint256): 20 -> 20
 | |
| // set_get_length(uint256): 0xFF -> 0xFF
 | |
| // set_get_length(uint256): 0xFFF -> 0xFFF
 | |
| // set_get_length(uint256): 0xFFFFF -> FAILURE # Out-of-gas #
 |