solidity/test/libsolidity/semanticTests/array/push/nested_bytes_push.sol
Daniel Kirchner a9c21863d4 Update tests.
2022-08-15 16:24:10 +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: 179170
// gas legacy: 181066
// gas legacyOptimized: 180435