2019-08-20 13:03:45 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f(uint x, bool b) public pure {
|
|
|
|
require(x < 100);
|
|
|
|
while (x < 10) {
|
|
|
|
if (b) {
|
|
|
|
x = 15;
|
|
|
|
continue;
|
2019-09-16 18:14:27 +00:00
|
|
|
x = 200;
|
2019-08-20 13:03:45 +00:00
|
|
|
}
|
2019-09-16 18:14:27 +00:00
|
|
|
x = 20;
|
2019-08-20 13:03:45 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
// Fails due to the if.
|
|
|
|
assert(x >= 17);
|
|
|
|
}
|
|
|
|
}
|
2019-12-04 15:39:34 +00:00
|
|
|
// ====
|
|
|
|
// SMTSolvers: z3
|
2019-08-20 13:03:45 +00:00
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// Warning 5740: (169-176): Unreachable code.
|
2020-09-09 14:12:55 +00:00
|
|
|
// Warning 6328: (227-242): Assertion violation happens here.
|