Release 0.41.92
[vala-gnome.git] / tests / structs / bug661945.vala
blob98ec4a9b2d4a1f1476fc464490b508da45e5455a
1 struct Foo {
2 int a;
3 int b;
6 void main () {
7 Variant a = Foo() { a=2, b=3 };
8 Foo b = (Foo) a;
9 assert (b.a == 2);
10 assert (b.b == 3);