2020-09-04 14:55:45 +00:00
|
|
|
contract C {
|
|
|
|
function f() public pure returns (uint16 x) {
|
2020-12-16 17:32:34 +00:00
|
|
|
unchecked {
|
|
|
|
x = 0xffff;
|
|
|
|
x += 32;
|
|
|
|
x = x << 8;
|
|
|
|
x = x >> 16;
|
|
|
|
}
|
2020-09-04 14:55:45 +00:00
|
|
|
assert(x == 0);
|
|
|
|
// Fails because x = 0.
|
|
|
|
assert(x == 10);
|
|
|
|
}
|
|
|
|
}
|
2020-12-02 17:40:48 +00:00
|
|
|
// ====
|
2021-03-31 15:11:54 +00:00
|
|
|
// SMTEngine: all
|
2020-12-02 17:40:48 +00:00
|
|
|
// SMTIgnoreCex: yes
|
2020-09-04 14:55:45 +00:00
|
|
|
// ----
|
2021-03-31 15:11:54 +00:00
|
|
|
// Warning 6328: (182-197): CHC: Assertion violation happens here.
|
2023-02-09 16:07:13 +00:00
|
|
|
// Info 1391: CHC: 1 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|