solidity/test/libsolidity/smtCheckerTests/invariants/loop_nested.sol
2019-12-09 15:32:08 +01:00

20 lines
242 B
Solidity

pragma experimental SMTChecker;
contract Simple {
function f() public pure {
uint x = 10;
uint y;
while (y < x)
{
++y;
x = 0;
while (x < 10)
++x;
assert(x == 10);
}
assert(y == x);
}
}
// ====
// SMTSolvers: z3