mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
22 lines
759 B
Solidity
22 lines
759 B
Solidity
|
contract C {
|
||
|
function f(bytes memory _a, bytes calldata _b, bytes memory _c)
|
||
|
public
|
||
|
returns (uint, byte, byte, byte)
|
||
|
{
|
||
|
return (_a.length + _b.length + _c.length, _a[1], _b[1], _c[1]);
|
||
|
}
|
||
|
function g() public returns (uint, byte, byte, byte) {
|
||
|
bytes memory x = new bytes(3);
|
||
|
bytes memory y = new bytes(4);
|
||
|
bytes memory z = new bytes(7);
|
||
|
x[1] = 0x08;
|
||
|
y[1] = 0x09;
|
||
|
z[1] = 0x0a;
|
||
|
return this.f(x, y, z);
|
||
|
}
|
||
|
}
|
||
|
// ====
|
||
|
// compileViaYul: also
|
||
|
// ----
|
||
|
// g() -> 0x0e, 0x0800000000000000000000000000000000000000000000000000000000000000, 0x0900000000000000000000000000000000000000000000000000000000000000, 0x0a00000000000000000000000000000000000000000000000000000000000000
|