libvaladoc: Fix fatal typo in GtkdocRenderer.visit_symbol_link()
[vala-gnome.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);