mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
199 B
Java
10 lines
199 B
Java
import java.util.*;
|
|
import java.util.Map.Entry;
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
Map<String, Entry> m = null;
|
|
Map<String, Map.Entry> sorted1;
|
|
sorted1 = m;
|
|
}
|
|
} |