solidity/test/libsolidity/smtCheckerTests/array_members/array_pop_length_2.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.length;
}
}
// ----
// Warning 2529: (82-89): Empty array "pop" detected here