-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P2
-
Affects Version/s: 5.0
-
Component/s: core-libs
-
b62
-
generic
-
generic
import java.util.*;
class T5078378 {
public static boolean contains(List l, Object o) {
return Collections.binarySearch(l, o) > -1;
}
}
This compiles with 1.4, but not with 1.5.
class T5078378 {
public static boolean contains(List l, Object o) {
return Collections.binarySearch(l, o) > -1;
}
}
This compiles with 1.4, but not with 1.5.
- relates to
-
JDK-5078378 REGRESSION: Following code compiles in 1.4.x but does not in 1.5.
-
- Closed
-