gdk-3.0: Atom is an IntegerType
[vala-gnome.git] / tests / asynchronous / bug792942.vala
blob5104f05fa124cceaaa83c0bc324f2330fafed255
1 class Foo {
2 public async Foo () throws Error {
6 async void run () {
7 try {
8 var foo = yield new Foo ();
9 } catch {
13 void main () {
14 run.begin ();