solidity/test/libsolidity/semanticTests/calldata/calldata_bytes_internal.sol
Alex Beregszaszi edbdff8619 Update tests
2020-12-14 19:32:31 +00:00

13 lines
321 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);
}
}
// ====
// compileViaYul: also
// ----
// f(uint256,bytes,uint256): 7, 0x60, 7, 4, "abcd" -> "c"