solidity/test/libsolidity/smtCheckerTests/types/tuple_array_pop_2.sol
2020-07-27 17:14:59 +02:00

8 lines
167 B
Solidity

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