1 2 3 4 5 6 7 8 9 10
struct FooStruct { public int array[FOO]; } const int FOO = 42; void main () { FooStruct foo = {}; assert (foo.array.length == 42); }