aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/arrayLength/can_be_recursive_constant.sol
blob: 6810a9d6a4818fbc9ef1f0596a7cb8489bd9f7d4 (plain) (blame)
1
2
3
4
5
6
contract C {
    uint constant L = 5;
    uint constant LEN = L + 4 * L;
    uint[LEN] ids;
}
// ----