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
Drop deprecated support for D-Bus GLib
[vala-lang.git]
/
tests
/
methods
/
bug595538.vala
blob
18a183bb97b94fa96eeb4516aed306a95c538c37
1
delegate
void
Foo
();
2
3
void
do_foo
(
Foo foo
) {
4
foo
();
5
}
6
7
void
main
() {
8
int
i
=
42
;
9
do_foo
(() => {
10
do_foo
(() => {
11
int
j
=
i
;
12
});
13
});
14
}
15