solidity/test/libsolidity/smtCheckerTests/array_members/push_overflow_1_safe.sol
2021-04-08 21:03:39 +02:00

10 lines
161 B
Solidity

contract C {
uint256[] x;
constructor() { x.push(42); }
function f() public {
x.push(23);
assert(x[0] == 42 || x[0] == 23);
}
}
// ====
// SMTEngine: all