mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
37 lines
631 B
Solidity
37 lines
631 B
Solidity
contract C {
|
|
uint x;
|
|
|
|
function f() public {
|
|
if (x == 0)
|
|
x = 1;
|
|
}
|
|
|
|
function g() public {
|
|
if (x == 1)
|
|
x = 2;
|
|
}
|
|
|
|
function h() public {
|
|
if (x == 2)
|
|
x = 0;
|
|
}
|
|
|
|
// This function shows that (x < 9) is not inductive and
|
|
// a stronger invariant is needed to be found.
|
|
// (x < 3) is the one found in the end.
|
|
function j() public {
|
|
if (x == 7)
|
|
x = 100;
|
|
}
|
|
|
|
function i() public view {
|
|
assert(x < 9);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreOS: macos
|
|
// SMTSolvers: z3
|
|
// ----
|
|
// Info 1391: CHC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|