mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
31 lines
403 B
Solidity
31 lines
403 B
Solidity
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);
|
|
}
|
|
}
|
|
// ----
|
|
// Warning 6328: (307-321): CHC: Assertion violation happens here.
|