We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b50d374 commit 9ea8830Copy full SHA for 9ea8830
test/cmdlineTests/model_checker_solvers_eld/args
@@ -0,0 +1 @@
1
+--model-checker-engine chc --model-checker-solvers eld
test/cmdlineTests/model_checker_solvers_eld/err
@@ -0,0 +1,5 @@
+Warning: CHC: Assertion violation happens here.
2
+ --> model_checker_solvers_eld/input.sol:5:3:
3
+ |
4
+5 | assert(x > 0);
5
+ | ^^^^^^^^^^^^^
test/cmdlineTests/model_checker_solvers_eld/input.sol
@@ -0,0 +1,7 @@
+// SPDX-License-Identifier: GPL-3.0
+pragma solidity >=0.0;
+contract test {
+ function f(uint x) public pure {
+ assert(x > 0);
6
+ }
7
+}
0 commit comments