2019-08-20 13:03:45 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
2020-02-12 02:21:42 +00:00
|
|
|
// This test gets different results on Linux and OSX.
|
|
|
|
// Re-enable when fixed (SMTSolvers: z3)
|
|
|
|
|
2019-08-20 13:03:45 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2019-12-04 15:39:34 +00:00
|
|
|
// ====
|
2020-02-12 02:21:42 +00:00
|
|
|
// SMTSolvers: none
|
2020-02-12 01:52:35 +00:00
|
|
|
// ----
|
|
|
|
// Warning: (195-209): Error trying to invoke SMT solver.
|
|
|
|
// Warning: (195-209): Assertion violation happens here
|