solidity/test/libsolidity/syntaxTests/array/length/pure_functions.sol

7 lines
186 B
Solidity
Raw Normal View History

contract C {
uint constant LEN = keccak256(ripemd160(33));
uint[LEN] ids;
}
// ----
// TypeError: (72-75): Invalid array length, expected integer literal or constant expression.