blob: 6788a98b215c27e25a441a7a9930feb3127bfe9b [file] [log] [blame]
class Test {
static class TKey<T> {
}
public interface Getter {
<T> T getValue(TKey<T> key);
}
static final TKey<Integer> KEY_I = null;
public static void f(Getter getter, TKey<Integer> key) {
double d1 = getter.getValue (key);
}
}