mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
22c7cd22b9
Co-authored-by: Kamil Śliwak <kamil.sliwak@codepoets.it>
15 lines
349 B
Solidity
15 lines
349 B
Solidity
pragma abicoder v1;
|
|
|
|
contract C {
|
|
function f(bool a, bytes calldata b, bytes32[2] calldata c)
|
|
public
|
|
returns (bool, bytes calldata, bytes32[2] calldata)
|
|
{
|
|
return (a, b, c);
|
|
}
|
|
}
|
|
// ====
|
|
// compileViaYul: false
|
|
// ----
|
|
// f(bool,bytes,bytes32[2]): true, 0x80, "a", "b", 4, "abcd" -> true, 0x80, "a", "b", 4, "abcd"
|