solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/397_warns_msg_value_in_non_payable_public_function.sol
2018-09-03 18:35:57 +02:00

8 lines
237 B
Solidity

contract C {
function f() view public {
msg.value;
}
}
// ----
// TypeError: (52-61): "msg.value" can only be used in payable public functions. Make the function "payable" or use an internal function to avoid this error.