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

16 lines
396 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
uint[] array;
function f(uint x, uint p) public {
require(x == 2);
array[p] = 10;
array[p] /= array[p] / x;
assert(array[p] == x);
assert(array[p] == 0);
}
}
// ----
2020-05-14 12:09:27 +00:00
// Warning: (163-184): Error trying to invoke SMT solver.
// Warning: (188-209): Error trying to invoke SMT solver.
// Warning: (188-209): Assertion violation happens here