solidity/test/libsolidity/smtCheckerTests/operators/shifts/shift_cleanup.sol

19 lines
326 B
Solidity
Raw Normal View History

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);
}
}
// ====
2021-03-31 15:11:54 +00:00
// SMTEngine: all
// 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.