Skip to main content
summaryrefslogtreecommitdiffstats
blob: 80b2d1d70bbb3b17b6fe9f1ff2f2fe9a3b7c3cb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package p;

import java.io.IOException;

class A{	
	void x(){}

	private void m() throws IOException {
	}
}

Back to the top