repo.or.cz
/
vala-gnome.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vapi: Update GIR-based bindings
[vala-gnome.git]
/
tests
/
asynchronous
/
bug640721.vala
blob
d7ff61252afa37f8c67ae87cfd3f2f09d3c1e3f9
1
async
void
foo
(
out
int
i
) {
2
}
3
4
void
main
() {
5
var
loop
=
new
MainLoop
();
6
foo
((
s
,
r
) => {
foo
.
end
(
r
,
null
);
loop
.
quit
(); });
7
loop
.
run
();
8
}