summaryrefslogtreecommitdiff
path: root/tests/errors/bug623049.vala
blob: 913f6cd9a05edfa4277bdc5ca76f5ea4b2229feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
public errordomain Foo {
	BAR
}

class ClsA : Object {
	public ClsA () throws Error {
		throw new Foo.BAR ("Test");
	}
}

class ClsB: ClsA {
	public ClsB () throws Error {
		base ();

		assert_not_reached ();
	}
}

void main () {
	try {
		new ClsB ();
	} catch (Error e) {
		debug ("Propagated error");
	}
}