solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/348_unused_return_value_call_value.sol
2020-06-22 18:56:32 +02:00

8 lines
171 B
Solidity

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