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

struct Bar : Foo {
}

void main() {
	Bar bar = { 0 };
}