D-Bus: Remove extra semicolon to avoid C warning
[vala-lang.git] / tests / structs / bug613825.vala
blobfc6cdd04b588cde3696014a15ec96cf9bfa42e77
1 struct Foo {
2 int i;
5 void main () {
6 var foo = Foo () { i = 42 };
7 assert (foo.i == 42);