-
Bug
-
Resolution: Fixed
-
P4
-
5.0
-
mantis
-
generic
-
solaris_8
The following program doesn't compile, but does compile when a temporary
variable is used to hold the result of the first argument expression.
There should be no error compiling this.
class X<T extends Number> {
static <T extends Number> X<T> f(X<T> a, X<T> b) {
return f(f(a, b), b);
}
}
variable is used to hold the result of the first argument expression.
There should be no error compiling this.
class X<T extends Number> {
static <T extends Number> X<T> f(X<T> a, X<T> b) {
return f(f(a, b), b);
}
}