summaryrefslogtreecommitdiff
path: root/tests/errors/delegate-throws-error-code.vala
blob: c06ed15e1f516f59cb2f254b3cd137ff5e40031b (plain)
1
2
3
4
5
6
7
8
9
10
11
errordomain FooError {
	FOO,
	BAR;
}

delegate void FooFunc () throws FooError.BAR;

void main () {
	FooFunc foo = () => {};
	foo ();
}