mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
12 lines
197 B
Solidity
12 lines
197 B
Solidity
pragma experimental SMTChecker;
|
|
contract C {
|
|
function f(int x, int y) public pure {
|
|
require(y == -10);
|
|
require(x == 100);
|
|
int z1 = x % y;
|
|
int z2 = x % -y;
|
|
assert(z1 == z2);
|
|
}
|
|
}
|
|
// ----
|