solidity/test/libsolidity/smtCheckerTests/array_members/array_pop_length_3.sol

13 lines
406 B
Solidity
Raw Normal View History

contract C {
uint[] a;
function f() public {
a.pop();
a.pop();
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
// ----
2021-03-31 15:11:54 +00:00
// Warning 2529: (49-56): CHC: Empty array "pop" happens here.\nCounterexample:\na = []\n\nTransaction trace:\nC.constructor()\nState: a = []\nC.f()
// Warning 2529: (60-67): CHC: Empty array "pop" happens here.\nCounterexample:\na = []\n\nTransaction trace:\nC.constructor()\nState: a = []\nC.f()