mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
13 lines
296 B
Solidity
13 lines
296 B
Solidity
pragma abicoder v2;
|
|
|
|
contract C {
|
|
struct S { uint256[] a; }
|
|
function f(S calldata s) external pure returns (uint256 a, uint256 b, uint256 c) {
|
|
return (s.a.length, s.a[0], s.a[1]);
|
|
}
|
|
}
|
|
// ====
|
|
// compileToEwasm: also
|
|
// ----
|
|
// f((uint256[])): 32, 32, 2, 42, 23 -> 2, 42, 23
|