2020-07-15 16:10:14 +00:00
|
|
|
contract C {
|
2020-12-03 17:22:45 +00:00
|
|
|
function f() public pure {
|
2020-12-14 17:34:40 +00:00
|
|
|
assert(bytes1("") & ("") == bytes1(0)); // should hold
|
|
|
|
assert(bytes1(0xAA) & bytes1(0x55) == bytes1(0)); // should hold
|
|
|
|
assert(bytes1(0xFF) & bytes1(0xAA) == bytes1(0xAA)); // should hold
|
|
|
|
assert(bytes1(0xFF) & bytes1(0xAA) == bytes1(0)); // should fail
|
2020-12-03 17:22:45 +00:00
|
|
|
}
|
2020-07-15 16:10:14 +00:00
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2020-07-15 16:10:14 +00:00
|
|
|
// ----
|
2023-02-09 16:07:13 +00:00
|
|
|
// Warning 6328: (237-285): CHC: Assertion violation happens here.
|
|
|
|
// Info 1391: CHC: 3 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|