solidity/test/libsolidity/smtCheckerTests/operators/shifts/shift_cleanup.sol
2022-04-01 23:41:18 -05:00

19 lines
344 B
Solidity

contract C {
function f() public pure returns (uint16 x) {
unchecked {
x = 0xffff;
x += 32;
x = x << 8;
x = x >> 16;
}
assert(x == 0);
// Fails because x = 0.
assert(x == 10);
}
}
// ====
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
// Warning 6328: (182-197='assert(x == 10)'): CHC: Assertion violation happens here.