summaryrefslogtreecommitdiff
path: root/tests/asynchronous/bug598677.vala
blob: 444d6be62bcc593c30497f54d28bd378639f2eb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
public class Foo {
	public Foo () throws Error {
	}
}

public async void do_foo () throws Error {
	new Foo ();
}

void main () {
}