summaryrefslogtreecommitdiff
path: root/test/system/boilerplate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/system/boilerplate.cpp')
-rw-r--r--test/system/boilerplate.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/system/boilerplate.cpp b/test/system/boilerplate.cpp
index c64c1463e..f1dc77988 100644
--- a/test/system/boilerplate.cpp
+++ b/test/system/boilerplate.cpp
@@ -31,7 +31,8 @@ int main() {
ExprManager em;
Options opts;
SmtEngine smt(&em);
- Result r = smt.query(em.mkConst(true));
+ BoolExpr F = em.mkConst(true);
+ Result r = smt.query(F);
return r == Result::VALID ? 0 : 1;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback