2019-09-13 22:54:51 +00:00
|
|
|
contract C {
|
|
|
|
bytes array;
|
|
|
|
|
|
|
|
function f() public {
|
|
|
|
array.push();
|
|
|
|
}
|
|
|
|
|
|
|
|
function g(uint x) public {
|
|
|
|
for (uint i = 0; i < x; ++i)
|
|
|
|
array.push() = bytes1(uint8(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
function l() public returns (uint) {
|
|
|
|
return array.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
function a(uint index) public view returns (bytes1) {
|
|
|
|
return array[index];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
|
|
|
// l() -> 0
|
|
|
|
// g(uint256): 70 ->
|
2022-05-23 10:54:18 +00:00
|
|
|
// gas irOptimized: 183587
|
2022-03-07 18:13:35 +00:00
|
|
|
// gas legacy: 183811
|
|
|
|
// gas legacyOptimized: 179218
|
2019-09-13 22:54:51 +00:00
|
|
|
// l() -> 70
|
|
|
|
// a(uint256): 69 -> left(69)
|
|
|
|
// f() ->
|
|
|
|
// l() -> 71
|
|
|
|
// a(uint256): 70 -> 0
|