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