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
Release 0.41.92
[vala-gnome.git]
/
tests
/
asynchronous
/
bug659886.vala
blob
39f48e59bb0dcc89f840d76037b30f2d88428204
1
class
Foo
:
Object
{
2
public
async
Foo
() {
3
Object
();
4
}
5
}
6
7
Foo f
;
8
9
public
async
void
bar
() {
10
f
=
yield new
Foo
();
11
}
12
13
void
main
() {
14
}