solidity/test/libsolidity/smtCheckerTests/operators/division_truncates_correctly_2.sol
2020-08-14 12:58:27 +02:00

12 lines
264 B
Solidity

pragma experimental SMTChecker;
contract C {
function f(int x, int y) public pure {
x = 7;
y = 2;
assert(x / y == 3);
}
}
// ----
// Warning 1218: (112-117): Error trying to invoke SMT solver.
// Warning 1218: (105-123): Error trying to invoke SMT solver.