solidity/test/libsolidity/smtCheckerTests/array_members/pop_constructor_safe.sol
2021-04-20 17:38:29 +02:00

11 lines
103 B
Solidity

contract C {
uint[] a;
constructor() {
a.push();
a.pop();
}
}
// ====
// SMTEngine: all
// ----