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

6 lines
226 B
Solidity

contract test {
function f() public returns (uint256 r) { return 1 >= 2; }
}
// ----
// TypeError: (69-75): Return argument type bool is not implicitly convertible to expected type (type of first return variable) uint256.