Fixes handling bitwise operators for z3 model checker

This commit is contained in:
Pawel Gebal
2023-02-08 18:37:17 +01:00
parent 411841cbb5
commit a38549dc19
3 changed files with 19 additions and 0 deletions
@@ -0,0 +1,12 @@
contract C {
// tests that bitwise operators are parsed from z3 answer
function test(uint x, uint y) public pure {
x | y;
x & y;
x ^ y;
assert(true);
}
}
// ====
// SMTEngine: all
// ----