Release 0.41.92
[vala-gnome.git] / tests / structs / bug656693.vala
blob86d90e50837547f3c80f2eca7b6b9d27d1767966
1 struct Foo {
2 int bar;
5 void baz (Foo foo) {
6 foo.bar = 3;
9 void main () {
10 Foo? foo = Foo ();
11 baz (foo);
12 assert (foo.bar == 0);