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

20 lines
478 B
Solidity

contract C {
function f(int8 a, int8 b) public returns (int256) {
return a >> b;
}
}
// ----
// f(int8,int8): -66, 0 -> -66
// f(int8,int8): -66, 1 -> -33
// f(int8,int8): -66, 4 -> -5
// f(int8,int8): -66, 8 -> -1
// f(int8,int8): -66, 16 -> -1
// f(int8,int8): -66, 17 -> -1
// f(int8,int8): -67, 0 -> -67
// f(int8,int8): -67, 1 -> -34
// f(int8,int8): -67, 4 -> -5
// f(int8,int8): -67, 8 -> -1
// f(int8,int8): -67, 16 -> -1
// f(int8,int8): -67, 17 -> -1