blob: 96932a3c192399dec1e09f488c5f8b7a0025fbcb [file] [log] [blame]
import java.util.*;
class A {
void foo() {
HM<String, String> hm = new HM<>();
for (Map.Entry<String, String> stringStringEntry : hm.entrySet()) {}
}
private static class HM<K, V> extends HashMap<K, V>{}
}
class B extends A {
}