codegen: Fix look-up of next closure block
[vala-lang.git] / tests / structs / bug583603.vala
blob9372ea9102cec8347d258dcc4c8539fddfff67ee
1 struct Foo {
2 int bar;
5 void main() {
6 int i = 42;
7 Foo foo = { i };
8 assert (foo.bar == 42);