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

15 lines
216 B
Solidity

pragma experimental SMTChecker;
contract C {
uint[] a;
function g() internal {
a.push();
}
function f() public {
a.pop();
g();
}
}
// ----
// Warning 2529: (122-129): CHC: Empty array "pop" happens here.