mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			623 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			623 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
| 	uint[] storageArray;
 | |
| 	function test_indicies(uint256 len) public
 | |
| 	{
 | |
| 		storageArray.length = len;
 | |
| 
 | |
| 		for (uint i = 0; i < len; i++)
 | |
| 			storageArray[i] = i + 1;
 | |
| 
 | |
| 		for (uint i = 0; i < len; i++)
 | |
| 			require(storageArray[i] == i + 1);
 | |
| 	}
 | |
| }
 | |
| // ====
 | |
| // compileViaYul: true
 | |
| // ----
 | |
| // test_indicies(uint256): 1 ->
 | |
| // test_indicies(uint256): 129 ->
 | |
| // test_indicies(uint256): 5 ->
 | |
| // test_indicies(uint256): 10 ->
 | |
| // test_indicies(uint256): 15 ->
 | |
| // test_indicies(uint256): 0xFF ->
 | |
| // test_indicies(uint256): 1000 ->
 | |
| // test_indicies(uint256): 129 ->
 | |
| // test_indicies(uint256): 128 ->
 | |
| // test_indicies(uint256): 1 ->
 |