2018-04-11 16:01:01 +00:00
|
|
|
contract C {
|
|
|
|
uint constant LEN = LEN;
|
2018-07-02 15:47:48 +00:00
|
|
|
function f() public {
|
2018-04-11 16:01:01 +00:00
|
|
|
uint[LEN] a;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
|
|
|
// TypeError: (37-40): Cyclic constant definition (or maximum recursion depth exhausted).
|