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

10 lines
108 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
uint[] a;
function f() public {
a.push();
a.pop();
}
}