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

15 lines
299 B
Solidity

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