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