mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
21 lines
483 B
Solidity
21 lines
483 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");
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: also
|
|
// ----
|
|
// f() ->
|
|
// gas irOptimized: 180067
|
|
// gas legacy: 180620
|
|
// gas legacyOptimized: 180403
|