solidity/test/libsolidity/smtCheckerTests/overflow/underflow_sub.sol
2020-12-30 12:14:30 +01:00

16 lines
235 B
Solidity

pragma experimental SMTChecker;
contract C
{
function f(uint8 x) public pure returns (uint) {
x = 0;
uint8 y;
unchecked { y = x - 1; }
assert(y == 255);
unchecked { y = x - 255; }
assert(y == 1);
return y;
}
}
// ----