summaryrefslogtreecommitdiff
path: root/tests/ordering/constant-struct.vala
blob: 135cd4fc1cc933a83fd31febfb21a1146141bf5f (plain)
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);
}