aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/552_warn_about_address_members_on_non_this_contract_delegatecall.sol
blob: 9941ce1f9ad9ee7575335a157f1a7d3be6a7772b (plain) (blame)
1
2
3
4
5
6
7
8
contract C {
    function f() pure public {
        C c;
        c.delegatecall;
    }
}
// ----
// TypeError: (65-79): Member "delegatecall" not found or not visible after argument-dependent lookup in contract C. Use "address(c).delegatecall" to access this address member.