summaryrefslogtreecommitdiff
path: root/tests/structs/bug613825.vala
blob: fc6cdd04b588cde3696014a15ec96cf9bfa42e77 (plain)
1
2
3
4
5
6
7
8
struct Foo {
	int i;
}

void main () {
	var foo = Foo () { i = 42 };
	assert (foo.i == 42);
}