aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/559_no_warning_for_using_members_that_look_like_address_members.sol
blob: 4c1870f107dc566987e79fd0deee9054c11b1527 (plain) (tree)
1
2
3
4
5
6





                                   
contract C {
    function transfer(uint) public;
    function f() public {
        this.transfer(10);
    }
}