-
Bug
-
Resolution: Fixed
-
P4
-
5.0
-
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) {
}
}
}