aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/arrayLength/can_be_constant_in_struct.sol
blob: 89e174f2d3fb038fc2b11b23ec7662e106bd8a87 (plain) (blame)
1
2
3
4
5
6
7
contract C {
    uint constant LEN = 10;
    struct Test {
        uint[LEN] ids;
    }
}
// ----