solidity/test/libsolidity/syntaxTests/returnExpressions/tuple_return_mismatching_number_named.sol
2018-08-07 20:49:52 +02:00

20 lines
539 B
Solidity

contract C
{
function f() public pure returns (uint a, uint b)
{
return 1;
}
function g() public pure returns (uint a, uint b)
{
return (1, 2, 3);
}
function h() public pure returns (uint a, uint b)
{
return;
}
}
// ----
// TypeError: (81-89): Different number of arguments in return statement than in returns declaration.
// TypeError: (165-181): Different number of arguments in return statement than in returns declaration.
// TypeError: (257-264): Return arguments required.