solidity/test/libsolidity/semanticTests/shifts/shift_right_negative_lvalue_assignment.sol
2020-03-19 14:42:25 +01:00

21 lines
580 B
Solidity

contract C {
function f(int256 a, int256 b) public returns (int256) {
a >>= b;
return a;
}
}
// ----
// f(int256,int256): -4266, 0 -> -4266
// f(int256,int256): -4266, 1 -> -2133
// f(int256,int256): -4266, 4 -> -267
// f(int256,int256): -4266, 8 -> -17
// f(int256,int256): -4266, 16 -> -1
// f(int256,int256): -4266, 17 -> -1
// f(int256,int256): -4267, 0 -> -4267
// f(int256,int256): -4267, 1 -> -2134
// f(int256,int256): -4267, 4 -> -267
// f(int256,int256): -4267, 8 -> -17
// f(int256,int256): -4267, 16 -> -1
// f(int256,int256): -4267, 17 -> -1