DEBSOURCES
Skip Quicknav
sources / vala / 0.56.18-5 / tests / ordering / constant-struct.vala
12345678910
struct FooStruct { public int array[FOO]; } const int FOO = 42; void main () { FooStruct foo = {}; assert (foo.array.length == 42); }