solidity/test/libsolidity/semanticTests/calldata/calldata_bytes_internal.sol
2022-05-19 20:23:28 +02:00

11 lines
290 B
Solidity

contract C {
function f(bytes calldata b, uint i) internal pure returns (bytes1) {
return b[i];
}
function f(uint, bytes calldata b, uint) external pure returns (bytes1) {
return f(b, 2);
}
}
// ----
// f(uint256,bytes,uint256): 7, 0x60, 7, 4, "abcd" -> "c"