solidity/test/libsolidity/smtCheckerTests/array_members/array_pop_length_7.sol
2020-08-31 12:11:33 +02:00

10 lines
108 B
Solidity

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