mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-07-15 00:59:22 +07:00
11 lines
252 B
Java
11 lines
252 B
Java
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 {
|
|
} |