aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/347_unused_return_value_call.sol
blob: 994a5bdf6f31a661818dbcadcfbd934626935a4f (plain) (tree)
1
2
3
4
5
6
7






                                                              
contract test {
    function f() public {
        address(0x12).call("abc");
    }
}
// ----
// Warning: (50-75): Return value of low-level calls not used.