solidity/test/libsolidity/semanticTests/constants/consteval_array_length.sol
2021-01-19 13:04:45 -05:00

16 lines
306 B
Solidity

contract C {
uint constant a = 12;
uint constant b = 10;
function f() public pure returns (uint, uint) {
uint[(a / b) * b] memory x;
return (x.length, (a / b) * b);
}
}
// ====
// compileViaYul: true
// compileToEwasm: also
// ----
// constructor() ->
// f() -> 0x0a, 0x0a