solidity/test/libsolidity/smtCheckerTests/external_calls/mutex_f_no_guard.sol

31 lines
398 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
abstract contract D {
function d() external virtual;
}
contract C {
uint x;
D d;
bool lock;
modifier mutex {
require(!lock);
lock = true;
_;
lock = false;
}
function set(uint _x) mutex public {
x = _x;
}
function f() public {
uint y = x;
d.d();
assert(y == x);
}
}
// ----
2020-09-09 14:12:55 +00:00
// Warning 6328: (307-321): Assertion violation happens here.