2019-02-06 10:12:02 +00:00
|
|
|
pragma experimental SMTChecker;
|
|
|
|
|
|
|
|
contract C
|
|
|
|
{
|
|
|
|
function f(uint8 x) public pure returns (uint8) {
|
2020-12-16 17:32:34 +00:00
|
|
|
uint8 y;
|
|
|
|
unchecked { y = x + 255; }
|
2019-02-06 10:12:02 +00:00
|
|
|
require(y >= x);
|
|
|
|
x = 255;
|
2020-12-16 17:32:34 +00:00
|
|
|
unchecked { y = x + 1; }
|
2019-02-06 10:12:02 +00:00
|
|
|
assert(y == 0);
|
|
|
|
y = x + 255;
|
|
|
|
assert(y == 254);
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-12-29 08:39:45 +00:00
|
|
|
// Warning 4984: (218-225): CHC: Overflow (resulting value larger than 255) happens here.\nCounterexample:\n\nx = 255\n = 0\n\nTransaction trace:\nC.constructor()\nC.f(0)
|