mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
11 lines
285 B
Solidity
11 lines
285 B
Solidity
|
contract C {
|
||
|
function f(uint a, uint16[] memory b, uint c)
|
||
|
public pure returns (uint, uint, uint) {
|
||
|
return (b.length, b[a], c);
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// f(uint256,uint16[],uint256): 6, 0x60, 9, 7, 11, 12, 13, 14, 15, 16, 17 -> 7, 17, 9
|