aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/542_warn_about_address_members_on_contract_transfer.sol
blob: 45ee1f5bf0026f0df4389d8bb641d513a2dff8eb (plain) (blame)
1
2
3
4
5
6
7
8
contract C {
    function f() view public {
        this.transfer;
    }
}
// ----
// Warning: (52-65): Using contract member "transfer" inherited from the address type is deprecated. Convert the contract to "address" type to access the member, for example use "address(contract).transfer" instead.
// TypeError: (52-65): Value transfer to a contract without a payable fallback function.