Release 0.41.92
[vala-gnome.git] / tests / asynchronous / bug659886.vala
blob39f48e59bb0dcc89f840d76037b30f2d88428204
1 class Foo : Object {
2 public async Foo () {
3 Object ();
7 Foo f;
9 public async void bar () {
10 f = yield new Foo ();
13 void main () {