solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/348_unused_return_value_call_value.sol

8 lines
165 B
Solidity

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