repo.or.cz
/
vala-lang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
D-Bus: Remove extra semicolon to avoid C warning
[vala-lang.git]
/
tests
/
structs
/
bug613825.vala
blob
fc6cdd04b588cde3696014a15ec96cf9bfa42e77
1
struct
Foo
{
2
int
i
;
3
}
4
5
void
main
() {
6
var
foo
=
Foo
() {
i
=
42
};
7
assert
(
foo
.
i
==
42
);
8
}