mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
9 lines
247 B
Java
9 lines
247 B
Java
import java.util.*;
|
|
class A {}
|
|
class B extends A {
|
|
void fo<caret>o() {
|
|
HM<String, String> hm = new HM<>();
|
|
for (Map.Entry<String, String> stringStringEntry : hm.entrySet()) {}
|
|
}
|
|
private static class HM<K, V> extends HashMap<K, V>{}
|
|
} |