mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
8d91ccf028
available at compile time is trusted.
17 lines
291 B
Solidity
17 lines
291 B
Solidity
interface D { function e() external; }
|
|
|
|
contract C {
|
|
bool locked = true;
|
|
|
|
function call(address target) public {
|
|
assert(locked);
|
|
locked = false;
|
|
D(target).e();
|
|
locked = true;
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 6328: (117-131): CHC: Assertion violation happens here.
|