summaryrefslogtreecommitdiff
path: root/tests/delegates/incompatible-error-argument.test
blob: f980022881c491e21e2da23b1802a981db11fa00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Invalid Code

errordomain FooError {
	FAIL;
}

errordomain BarError {
	FAIL;
}

delegate void FooFunc () throws FooError;

delegate void BarFunc () throws BarError;

void foo (FooFunc f) {
}

void main () {
	BarFunc bar = () => { throw new BarError.FAIL (""); };
	foo (bar);
}