solidity/test/libsolidity/smtCheckerTests/array_members/pop_1_unsafe.sol
2020-05-18 16:35:56 +02:00

11 lines
158 B
Solidity

pragma experimental SMTChecker;
contract C {
uint[] a;
function f() public {
a.pop();
}
}
// ----
// Warning: (82-89): Empty array "pop" detected here.