solidity/test/libsolidity/smtCheckerTests/operators/division_truncates_correctly_3.sol

12 lines
266 B
Solidity
Raw Normal View History

2019-12-04 12:17:05 +00:00
pragma experimental SMTChecker;
contract C {
function f(int x, int y) public pure {
x = -7;
y = 2;
assert(x / y == -3);
}
}
2020-05-14 12:09:27 +00:00
// ----
2020-08-11 13:53:24 +00:00
// Warning 1218: (113-118): Error trying to invoke SMT solver.
// Warning 1218: (106-125): Error trying to invoke SMT solver.