contract C { function f() public pure returns (uint, uint) { return 1; } function g() public pure returns (uint, uint) { return (1, 2, 3); } function h() public pure returns (uint, uint) { return; } } // ---- // TypeError: (77-85): Different number of arguments in return statement than in returns declaration. // TypeError: (157-173): Different number of arguments in return statement than in returns declaration. // TypeError: (245-252): Return arguments required.