aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/348_unused_return_value_call_value.sol
blob: 1ac7c6f33a70874eaa03328935cca05bd020e194 (plain) (blame)
1
2
3
4
5
6
7
contract test {
    function f() public {
        address(0x12).call.value(2)("abc");
    }
}
// ----
// Warning: (50-84): Return value of low-level calls not used.