solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/505_builtin_ecrecover_reject_value.sol
Mathias Baumann 093b9ced97 Make sure "value" error hint is only displayed in the right context
Before, the hint would be shown for any "value" member, even a user-specified one.
2019-02-18 16:29:57 +01:00

8 lines
161 B
Solidity

contract C {
function f() public {
ecrecover.value();
}
}
// ----
// TypeError: (47-62): Member "value" is only available for payable functions.