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

15 lines
221 B
Solidity

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