mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
232 B
Solidity
9 lines
232 B
Solidity
|
contract C {
|
||
|
function f(int a) public {}
|
||
|
function failFunctionArgsIntLiteralTuple() public returns(bytes memory) {
|
||
|
return abi.encodeCall(this.f, (1,));
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// TypeError 8381: (149-153): Tuple component cannot be empty.
|