solidity/test/libsolidity/smtCheckerTests/unchecked/signed_mod.sol

19 lines
833 B
Solidity
Raw Normal View History

2020-12-16 17:32:34 +00:00
contract C {
function f(int a, int b) public pure returns (int) {
return a % b; // can div by 0
}
function g(bool _check) public pure returns (int) {
int x = type(int).min;
if (_check) {
return x / -1; // can overflow
} else {
unchecked { return x / -1; } // overflow not reported
}
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2020-12-16 17:32:34 +00:00
// ----
2021-03-31 15:11:54 +00:00
// Warning 4281: (85-90): CHC: Division by zero happens here.\nCounterexample:\n\na = 0\nb = 0\n = 0\n\nTransaction trace:\nC.constructor()\nC.f(0, 0)
// Warning 4984: (242-248): CHC: Overflow (resulting value larger than 0x80 * 2**248 - 1) happens here.\nCounterexample:\n\n_check = true\n = 0\nx = (- 57896044618658097711785492504343953926634992332820282019728792003956564819968)\n\nTransaction trace:\nC.constructor()\nC.g(true)