solidity/test/cmdlineTests/model_checker_targets_all_chc/err

90 lines
1.5 KiB
Plaintext
Raw Normal View History

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)
2021-03-31 15:31:23 +00:00
--> model_checker_targets_all_chc/input.sol:7:3:
|
2021-03-31 15:31:23 +00:00
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)
2021-03-31 15:31:23 +00:00
--> model_checker_targets_all_chc/input.sol:8:3:
|
2021-03-31 15:31:23 +00:00
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)
2021-03-31 15:31:23 +00:00
--> model_checker_targets_all_chc/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)
2021-03-31 15:31:23 +00:00
--> model_checker_targets_all_chc/input.sol:11:3:
|
2021-03-31 15:31:23 +00:00
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)
2021-03-31 15:31:23 +00:00
--> model_checker_targets_all_chc/input.sol:12:3:
|
2021-03-31 15:31:23 +00:00
12 | arr.pop();
| ^^^^^^^^^
2021-03-23 18:15:14 +00:00
Warning: CHC: Out of bounds access happens here.
Counterexample:
arr = []
a = 0x0
2021-03-23 18:15:14 +00:00
x = 0
Transaction trace:
test.constructor()
State: arr = []
test.f(0x0, 1)
2021-03-31 15:31:23 +00:00
--> model_checker_targets_all_chc/input.sol:13:3:
2021-03-23 18:15:14 +00:00
|
2021-03-31 15:31:23 +00:00
13 | arr[x];
2021-03-23 18:15:14 +00:00
| ^^^^^^