aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/length/complex_cyclic_constant.sol
blob: 254f9f02002d138524f788d3c583ce46f322bb20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
contract C {
    uint constant L2 = LEN - 10;
    uint constant L1 = L2 / 10;
    uint constant LEN = 10 + L1 * 5;
    function f() {
        uint[LEN] a;
    }
}
// ----
// TypeError: (36-39): Cyclic constant definition (or maximum recursion depth exhausted).