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

19 lines
261 B
Solidity
Raw Normal View History

2019-05-06 16:24:15 +00:00
pragma experimental SMTChecker;
contract C
{
uint[] a;
function f(bool b) public {
a[2] = 3;
require(b);
if (b)
delete a;
else
delete a[2];
assert(a[2] == 0);
2019-08-22 13:44:30 +00:00
assert(a[1] == 0);
2019-05-06 16:24:15 +00:00
}
}
// ----
// Warning: (118-119): Condition is always true.