mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
16 lines
347 B
Solidity
16 lines
347 B
Solidity
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
|