solidity/test/libsolidity/semanticTests/constantEvaluator/rounding.sol

16 lines
347 B
Solidity
Raw Normal View History

2020-11-16 11:19:52 +00:00
contract C {
int constant a = 7;
int constant b = 3;
int constant c = a / b;
int constant d = (-a) / b;
function f() public pure returns (uint, int, uint, int) {
uint[c] memory x;
uint[-d] memory y;
return (x.length, c, y.length, -d);
}
}
// ====
// compileViaYul: also
// ----
// f() -> 2, 2, 2, 2