solidity/test/libsolidity/smtCheckerTests/array_members/array_pop_length_1.sol
2020-08-31 12:11:33 +02:00

12 lines
174 B
Solidity

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