solidity/test/libsolidity/smtCheckerTests/array_members/array_pop_length_5.sol
2021-04-08 21:03:39 +02:00

15 lines
293 B
Solidity

contract C {
uint[] a;
function g() internal {
a.push();
}
function f() public {
a.pop();
g();
}
}
// ====
// SMTEngine: all
// ----
// Warning 2529: (89-96): CHC: Empty array "pop" happens here.\nCounterexample:\na = []\n\nTransaction trace:\nC.constructor()\nState: a = []\nC.f()