solidity/test/libsolidity/syntaxTests/functionCalls/msg_value_non_payable.sol
2022-04-01 23:41:18 -05:00

8 lines
298 B
Solidity

contract C {
function get() public view returns(uint256) {
return msg.value;
}
}
// ----
// TypeError 5887: (78-87='msg.value'): "msg.value" and "callvalue()" can only be used in payable public functions. Make the function "payable" or use an internal function to avoid this error.