mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
373 B
Solidity
14 lines
373 B
Solidity
contract C {
|
|
function f(address _a) public {
|
|
uint b1 = address(this).balance;
|
|
_a.call("");
|
|
uint b2 = address(this).balance;
|
|
assert(b1 == b2); // should fail
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: bmc
|
|
// ----
|
|
// Warning 9302: (83-94='_a.call("")'): Return value of low-level calls not used.
|
|
// Warning 4661: (133-149='assert(b1 == b2)'): BMC: Assertion violation happens here.
|