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
gdk-3.0: Atom is an IntegerType
[vala-gnome.git]
/
tests
/
asynchronous
/
bug792942.vala
blob
5104f05fa124cceaaa83c0bc324f2330fafed255
1
class
Foo
{
2
public
async
Foo
()
throws Error
{
3
}
4
}
5
6
async
void
run
() {
7
try
{
8
var
foo
=
yield new
Foo
();
9
}
catch
{
10
}
11
}
12
13
void
main
() {
14
run
.
begin
();
15
}