solidity/test/libsolidity/semanticTests/shifts/shift_right_negative_lvalue_int8.sol

22 lines
509 B
Solidity
Raw Normal View History

contract C {
function f(int8 a, int8 b) public returns (int256) {
return a >> b;
}
}
2020-04-20 21:16:42 +00:00
// ====
// compileViaYul: also
// ----
// 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