aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/546_warn_about_address_members_on_contract_delegatecall.sol
blob: 38a84d396b51d476df70eeea755c4a9b46dbdfca (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f() view public {
        this.delegatecall;
    }
}
// ----
// TypeError: (52-69): Member "delegatecall" not found or not visible after argument-dependent lookup in contract C