solidity/test/libsolidity/semanticTests/array/push/nested_bytes_push.sol
Nikola Matic fdc6699159 Rematerialize zero literals with default cleanup sequence
Add unused pruner step to the end of the default cleanup sequence
2023-09-04 15:40:33 +02:00

19 lines
452 B
Solidity

pragma abicoder v2;
contract C {
bytes[] a;
function f() public {
a.push("abc");
a.push("abcdefghabcdefghabcdefghabcdefgh");
a.push("abcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefghabcdefgh");
assert(a[0][0] == "a");
assert(a[1][31] == "h");
assert(a[2][32] == "a");
}
}
// ----
// f() ->
// gas irOptimized: 179112
// gas legacy: 181014
// gas legacyOptimized: 180422