aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/memberLookup/msg_value_modifier_view.sol
blob: 8430c5c3e3f84b1af6c9c29dd125da3df592d551 (plain) (blame)
1
2
3
4
5
6
contract C {
    modifier costs(uint _amount) { require(msg.value >= _amount); _; }
    function f() costs(1 ether) public view {}
}
// ----
// TypeError: (101-115): This modifier uses "msg.value" and thus the function has to be payable or internal.