solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/typeChecking/function_call.sol
2019-02-13 15:52:31 +01:00

6 lines
153 B
Solidity

contract test {
function f() public returns (bool) { return g(12, true) == 3; }
function g(uint256, bool) public returns (uint256) { }
}
// ----