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
gtk+-3.0: Fix gtk_widget_adjust_size_* bindings
[vala-lang.git]
/
tests
/
structs
/
bug583603.vala
blob
9372ea9102cec8347d258dcc4c8539fddfff67ee
1
struct
Foo
{
2
int
bar
;
3
}
4
5
void
main
() {
6
int
i
=
42
;
7
Foo foo
= {
i
};
8
assert
(
foo
.
bar
==
42
);
9
}