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

15 lines
216 B
Solidity

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