solidity/test/libsolidity/syntaxTests/functionTypes/call_value_on_non_payable_function_type.sol
2018-04-11 22:00:04 +02:00

9 lines
310 B
Solidity

contract C {
function (uint) external returns (uint) x;
function f() public {
x.value(2)();
}
}
// ----
// TypeError: (94-101): Member "value" not found or not visible after argument-dependent lookup in function (uint256) external returns (uint256) - did you forget the "payable" modifier?