-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 5.0
-
Component/s: tools
-
b56
-
generic
-
solaris_8
javac fails to give the required error on the following code. See also 4992380.
class J {
<T extends Error, U extends Error> void foo() {
try {
int i = 12;
} catch (T ex) {
} catch (U ex) {
}
}
}
class J {
<T extends Error, U extends Error> void foo() {
try {
int i = 12;
} catch (T ex) {
} catch (U ex) {
}
}
}