solidity/test/libsolidity/semanticTests/calldata/calldata_bytes_external.sol
2020-07-20 15:40:58 +02:00

14 lines
334 B
Solidity

contract CalldataTest {
function test(bytes calldata x) public returns (bytes calldata) {
return x;
}
function tester(bytes calldata x) public returns (byte) {
return this.test(x)[2];
}
}
// ====
// compileViaYul: also
// EVMVersion: >=byzantium
// ----
// tester(bytes): 0x20, 0x08, "abcdefgh" -> "c"