solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/009_type_checking_function_call.sol

6 lines
153 B
Solidity
Raw Normal View History

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