solidity/test/libsolidity/smtCheckerTests/external_calls/external_reentrancy_1.sol
2021-11-24 20:41:22 +01:00

22 lines
468 B
Solidity

interface D { function e() external; }
contract C {
bool locked = true;
function call(address target) public {
locked = false;
D(target).e();
locked = true;
}
function broken() public view {
assert(locked);
}
}
// ====
// SMTEngine: all
// ----
// Warning 1218: (206-220): CHC: Error trying to invoke SMT solver.
// Warning 6328: (206-220): CHC: Assertion violation might happen here.
// Warning 4661: (206-220): BMC: Assertion violation happens here.