solidity/test/libsolidity/smtCheckerTests/types/tuple_array_pop_1.sol
2020-07-28 11:24:25 +02:00

8 lines
158 B
Solidity

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