mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
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:
+12
@@ -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
|
||||
// ----
|
||||
Reference in New Issue
Block a user