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