solidity/test/libsolidity/semanticTests/array/delete/bytes_delete_element.sol
Daniel Kirchner a8f7c69c47 Adjust tests.
2021-09-13 20:41:40 +02:00

25 lines
590 B
Solidity

contract c {
bytes data;
function test1() external returns (bool) {
data = new bytes(100);
for (uint256 i = 0; i < data.length; i++) data[i] = bytes1(uint8(i));
delete data[94];
delete data[96];
delete data[98];
return
data[94] == 0 &&
uint8(data[95]) == 95 &&
data[96] == 0 &&
uint8(data[97]) == 97;
}
}
// ====
// requiresYulOptimizer: minimalStack
// compileViaYul: also
// ----
// test1() -> true
// gas irOptimized: 230748
// gas legacy: 255577
// gas legacyOptimized: 248611