mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
29 lines
729 B
Solidity
29 lines
729 B
Solidity
abstract contract D {
|
|
function d() public virtual ;
|
|
}
|
|
|
|
contract C {
|
|
bool a;
|
|
uint x;
|
|
D d;
|
|
function g() public returns (uint) {
|
|
x = 2;
|
|
d.d();
|
|
return x;
|
|
}
|
|
function f(bool b) public {
|
|
x = 1;
|
|
uint y = b ? g() : 3;
|
|
assert(x == 2 || x == 1);
|
|
}
|
|
function h() internal {
|
|
x = 3;
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreOS: macos
|
|
// ----
|
|
// Warning 2072: (255-261): Unused local variable.
|
|
// Info 1180: Reentrancy property(ies) for :C:\n((!(x' <= 0) || ((x' + ((- 1) * x)) = 0)) && (<errorCode> <= 0) && (!(x' >= 3) || ((x' + ((- 1) * x)) = 0)))\n<errorCode> = 0 -> no errors\n<errorCode> = 1 -> Assertion failed at assert(x == 2 || x == 1)\n
|