solidity/test/libsolidity/syntaxTests/arrayLength/can_be_constant_in_struct.sol
2018-04-11 18:01:24 +02:00

8 lines
98 B
Solidity

contract C {
uint constant LEN = 10;
struct Test {
uint[LEN] ids;
}
}
// ----