solidity/test/libsolidity/smtCheckerTests/array_members/pop_constructor_safe.sol
2020-07-07 12:16:18 +02:00

10 lines
102 B
Solidity

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