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
Fix verbatim strings ending with `"`
[vala-lang.git]
/
tests
/
asynchronous
/
bug595755.vala
blob
ac9bbd53b649b7dda8885cc4ad72d3d59e2b44c4
1
class
Foo
:
Object
{
2
public signal
void
bar
();
3
4
public
async
void
do_foo
() {
5
bar
.
connect
(() => {
6
});
7
}
8
}
9
10
void
main
() {
11
}