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

21 lines
364 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C
{
uint[] array;
function f(uint x) public {
array[x] = 5;
uint a = --array[x];
assert(array[x] == 4);
assert(a == 4);
uint b = array[x]--;
assert(array[x] == 3);
// Should fail.
assert(b > 4);
}
}
// ====
// SMTIgnoreCex: yes
// ----
// Warning 6328: (240-253): CHC: Assertion violation happens here.