solidity/test/libsolidity/smtCheckerTests/types/tuple_array_pop_2.sol

8 lines
167 B
Solidity
Raw Normal View History

2020-07-27 15:14:59 +00:00
pragma experimental SMTChecker;
contract C {
int[] a;
function f() public { (((((a))))).pop();}
}
// ----
// Warning 2529: (78-95): Empty array "pop" detected here.