Warning: CHC: Underflow (resulting value less than 0) happens here.
Counterexample:
arr = []
a = 0x0
x = 0

Transaction trace:
test.constructor()
State: arr = []
test.f(0x0, 0)
 --> model_checker_targets_all_all_engines/input.sol:7:3:
  |
7 | 		--x;
  | 		^^^

Warning: CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
Counterexample:
arr = []
a = 0x0
x = 1

Transaction trace:
test.constructor()
State: arr = []
test.f(0x0, 2)
 --> model_checker_targets_all_all_engines/input.sol:8:3:
  |
8 | 		x + type(uint).max;
  | 		^^^^^^^^^^^^^^^^^^

Warning: CHC: Division by zero happens here.
Counterexample:
arr = []
a = 0x0
x = 0

Transaction trace:
test.constructor()
State: arr = []
test.f(0x0, 1)
 --> model_checker_targets_all_all_engines/input.sol:9:3:
  |
9 | 		2 / x;
  | 		^^^^^

Warning: CHC: Assertion violation happens here.
Counterexample:
arr = []
a = 0x0
x = 0

Transaction trace:
test.constructor()
State: arr = []
test.f(0x0, 1)
  --> model_checker_targets_all_all_engines/input.sol:11:3:
   |
11 | 		assert(x > 0);
   | 		^^^^^^^^^^^^^

Warning: CHC: Empty array "pop" happens here.
Counterexample:
arr = []
a = 0x0
x = 0

Transaction trace:
test.constructor()
State: arr = []
test.f(0x0, 1)
  --> model_checker_targets_all_all_engines/input.sol:12:3:
   |
12 | 		arr.pop();
   | 		^^^^^^^^^

Warning: CHC: Out of bounds access happens here.
Counterexample:
arr = []
a = 0x0
x = 0

Transaction trace:
test.constructor()
State: arr = []
test.f(0x0, 1)
  --> model_checker_targets_all_all_engines/input.sol:13:3:
   |
13 | 		arr[x];
   | 		^^^^^^

Info: CHC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.

Warning: BMC: Condition is always true.
 --> model_checker_targets_all_all_engines/input.sol:6:11:
  |
6 | 		require(x >= 0);
  | 		        ^^^^^^
Note: Callstack:
