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

13 lines
234 B
Solidity

pragma experimental SMTChecker;
contract C {
uint[] a;
function f() public {
a.pop();
a.pop();
}
}
// ----
// Warning 2529: (82-89): Empty array "pop" detected here.
// Warning 2529: (93-100): Empty array "pop" detected here.