aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/543_warn_about_address_members_on_contract_send.sol
blob: e9e26a000f9c6c553d47c130eb9e850a4b5123f5 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f() view public {
        this.send;
    }
}
// ----
// TypeError: (52-61): Member "send" not found or not visible after argument-dependent lookup in contract C. Use "address(this).send" to access this address member.