Skip to main content
summaryrefslogtreecommitdiffstats
blob: b61372332918c543b5c63b6d163aa01e02e87f31 (plain) (blame)
1
2
3
4
5
6
7
8
package test0413;

class E extends Exception {
}

interface A {
	void m() throws IOException, E;
}

Back to the top