-
Bug
-
Resolution: Fixed
-
P4
-
5.0
-
mantis
-
generic
-
solaris_8
The following program compiles without error (as it should(?)) but
no bridge method is added in D for the method from A. Consequently,
this program fails at runtime with an abstract method error.
interface A<T> {
void f(T u);
}
class B {
public void f(Integer i) {}
}
abstract class C<T> extends B implements A<T> {
public void g(T t) {
f(t);
}
}
class D extends C<Integer> {
public static void main(String[] args) {
new D().g(new Integer(3));
}
}
no bridge method is added in D for the method from A. Consequently,
this program fails at runtime with an abstract method error.
interface A<T> {
void f(T u);
}
class B {
public void f(Integer i) {}
}
abstract class C<T> extends B implements A<T> {
public void g(T t) {
f(t);
}
}
class D extends C<Integer> {
public static void main(String[] args) {
new D().g(new Integer(3));
}
}