mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
17 lines
576 B
Solidity
17 lines
576 B
Solidity
contract C {
|
|
function f(int x, int y) public pure {
|
|
require(y != 0);
|
|
require(x == 42);
|
|
int z1 = x % y;
|
|
int z2 = -x % y;
|
|
assert(z1 == -z2);
|
|
assert((x >= 0 && z1 >=0) || (x <= 0 && z1 <= 0));
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// ----
|
|
// Warning 6328: (131-148): CHC: Assertion violation might happen here.
|
|
// Info 1391: CHC: 3 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|
|
// Info 6002: BMC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|