aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/length/constant_var.sol
blob: 41750250e38997b86a631b9796c8174b27db5dd7 (plain) (blame)
1
2
3
4
5
contract C {
    uint constant LEN = 10;
    uint[LEN] ids;
}
// ----