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

void foo () throws FooError.BAR {
}

void main () {
	foo ();
}