Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 589910db0dc75b59f3072c4a512e1a08d1bb1798 (plain) (blame)
1
2
3
4
5
6
7
8
package a7;
/* Test case for bug 6779 searchDeclarationsOfReferencedTyped - missing exception types */
public class X {
	public void foo() throws MyException {
	}
}
class MyException extends Exception {
}

Back to the top