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

40 lines
1.1 KiB
Solidity
Raw Normal View History

2020-09-04 14:55:45 +00:00
contract C {
function leftU(uint8 x, uint8 y) internal pure returns (uint8) {
return x << y;
}
function leftS(int8 x, uint8 y) internal pure returns (int8) {
return x << y;
}
function t() public pure {
assert(leftU(255, 8) == 0);
// Fails because the above is true.
assert(leftU(255, 8) == 1);
assert(leftU(255, 1) == 254);
// Fails because the above is true.
assert(leftU(255, 1) == 255);
assert(leftU(255, 0) == 255);
// Fails because the above is true.
assert(leftU(255, 0) == 0);
assert(leftS(1, 7) == -128);
// Fails because the above is true.
assert(leftS(1, 7) == 127);
assert(leftS(1, 6) == 64);
// Fails because the above is true.
assert(leftS(1, 6) == -64);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2020-09-04 14:55:45 +00:00
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (307-333): CHC: Assertion violation happens here.
// Warning 6328: (408-436): CHC: Assertion violation happens here.
// Warning 6328: (511-537): CHC: Assertion violation happens here.
// Warning 6328: (611-637): CHC: Assertion violation happens here.
// Warning 6328: (709-735): CHC: Assertion violation happens here.