aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/346_unused_return_value_send.sol
blob: 929e54b2050e96e4b900f67c4d1bc97fa6a474a5 (plain) (tree)
1
2
3
4
5
6
7






                                                                                            
contract test {
    function f() public {
        address(0x12).send(1);
    }
}
// ----
// Warning: (50-71): Failure condition of 'send' ignored. Consider using 'transfer' instead.