|
Duplicate :
|
|
|
Duplicate :
|
|
|
Relates :
|
The following program crashes javac:
class X {
public static <T> T getValue() {
return null;
}
public void testGenerics(Comparable<String> s) {
int i = getValue();
}
}
|