solidity/test/libsolidity/smtCheckerTests/array_members/array_pop_length_6.sol

15 lines
217 B
Solidity
Raw Normal View History

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