solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/347_unused_return_value_call.sol

8 lines
156 B
Solidity
Raw Normal View History

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