solidity/test/libsolidity/smtCheckerTests/array_members/array_pop_length_5.sol
2020-09-09 16:14:21 +02:00

15 lines
212 B
Solidity

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