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

15 lines
212 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
uint[] a;
function g() internal {
a.push();
}
function f() public {
a.pop();
g();
}
}
// ----
2020-09-09 14:12:55 +00:00
// Warning 2529: (122-129): Empty array "pop" detected here.