Merge pull request #13939 from pgebal/fix_handling_bitwise_operators_when_parsing_z3_call_result

Fixes handling bitwise operators for z3 model checker
This commit is contained in:
Leo
2023-02-09 12:16:28 +01:00
committed by GitHub
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
// ----