solidity/test/libsolidity/semanticTests/shifts/shift_negative_rvalue.sol
2020-05-06 19:14:23 +02:00

16 lines
312 B
Solidity

contract C {
function f(int256 a, int256 b) public returns (int256) {
return a << b;
}
function g(int256 a, int256 b) public returns (int256) {
return a >> b;
}
}
// ====
// compileViaYul: also
// ----
// f(int256,int256): 1, -1 -> FAILURE
// g(int256,int256): 1, -1 -> FAILURE