2018-11-09 17:50:06 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f(uint x) public pure {
|
|
|
|
require(x < 100);
|
|
|
|
for(uint i = 0; i < 10; ++i) {
|
|
|
|
// Overflows due to resetting x.
|
|
|
|
x = x + 1;
|
|
|
|
}
|
|
|
|
assert(x < 14);
|
|
|
|
}
|
|
|
|
}
|
2019-12-04 15:39:34 +00:00
|
|
|
// ====
|
|
|
|
// SMTSolvers: z3
|
2018-11-09 17:50:06 +00:00
|
|
|
// ----
|
2021-01-27 06:59:58 +00:00
|
|
|
// Warning 4984: (176-181): CHC: Overflow (resulting value larger than 2**256 - 1) might happen here.
|
2021-01-06 15:06:15 +00:00
|
|
|
// Warning 6328: (189-203): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 14\n\nTransaction trace:\nC.constructor()\nC.f(4)
|
2021-01-27 06:59:58 +00:00
|
|
|
// Warning 2661: (176-181): BMC: Overflow (resulting value larger than 2**256 - 1) happens here.
|