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

8 lines
166 B
Solidity

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