Release 0.41.92
[vala-gnome.git] / tests / structs / bug749952.vala
blob212edc59a44b895c3e8d02d38ccc0348f83d39be
1 struct Foo {
2 int i;
5 struct Bar : Foo {
8 void main () {
9 Bar b1 = {};
10 Bar b2 = {};
12 assert (b1 == b2);
13 assert (b2 == b1);