-
Bug
-
Resolution: Fixed
-
P4
-
5.0
See <http://forum.java.sun.com/thread.jsp?forum=316&thread=495830>
class Test {
static class SomeType<T> { T t = null; }
static <T> T nil() { return (new SomeType<T>()).t; }
public static void test() {
nil().getClass(); // error: java.lang.Object cannot be dereferenced
}
}
class Test {
static class SomeType<T> { T t = null; }
static <T> T nil() { return (new SomeType<T>()).t; }
public static void test() {
nil().getClass(); // error: java.lang.Object cannot be dereferenced
}
}
- duplicates
-
JDK-5042920 (inference) underconstrained type variable cannot be dereferenced
-
- Closed
-
-
JDK-5043021 cannot unbox from bound of type variable.
-
- Closed
-
- relates to
-
JDK-5034571 Wildcard capture must use the bounds of the formal
-
- Closed
-