mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
27 lines
782 B
Solidity
27 lines
782 B
Solidity
pragma abicoder v2;
|
|
|
|
contract C {
|
|
function g(uint256[] calldata) external pure returns (bytes memory) {
|
|
return msg.data;
|
|
}
|
|
function f(uint256[][1] calldata s) external view returns (bool) {
|
|
bytes memory a = this.g(s[0]);
|
|
uint256[] memory m = s[0];
|
|
bytes memory b = this.g(m);
|
|
assert(a.length == b.length);
|
|
for (uint i = 0; i < a.length; i++)
|
|
assert(a[i] == b[i]);
|
|
return true;
|
|
}
|
|
}
|
|
// ====
|
|
// EVMVersion: >homestead
|
|
// compileViaYul: also
|
|
// ----
|
|
// f(uint256[][1]): 32, 32, 0 -> true
|
|
// f(uint256[][1]): 32, 32, 1, 42 -> true
|
|
// f(uint256[][1]): 32, 32, 8, 421, 422, 423, 424, 425, 426, 427, 428 -> true
|
|
// gas irOptimized: 171964
|
|
// gas legacy: 141644
|
|
// gas legacyOptimized: 121532
|