summaryrefslogtreecommitdiff
path: root/tests/asynchronous/bug612641.vala
blob: 5b626340db8c4de8e69b8ae85c24672b10ddf006 (plain)
1
2
3
4
5
6
7
8
9
10
delegate void FooFunc ();

class Foo {
	async FooFunc foo () {
		return () => {};
	}
}

void main () {
}