mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
21 lines
467 B
Solidity
21 lines
467 B
Solidity
library L {
|
|
function f(uint, bytes calldata _x, uint) internal returns (bytes1) {
|
|
return _x[2];
|
|
}
|
|
}
|
|
contract C {
|
|
function f(bytes calldata a)
|
|
external
|
|
returns (bytes1)
|
|
{
|
|
return L.f(3, a, 9);
|
|
}
|
|
function g() public returns (bytes1) {
|
|
bytes memory x = new bytes(4);
|
|
x[2] = 0x08;
|
|
return this.f(x);
|
|
}
|
|
}
|
|
// ----
|
|
// g() -> 0x0800000000000000000000000000000000000000000000000000000000000000
|