mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 20:36:34 +07:00
14 lines
245 B
Java
14 lines
245 B
Java
|
|
class Test{
|
|
interface Map<K, V>{
|
|
K put(K k, V v);
|
|
}
|
|
|
|
class HashMap implements Map<Integer, Integer>{
|
|
}
|
|
|
|
{
|
|
HashMap map = new HashMap();
|
|
map.put(new Integer(1), new Integer(1)).<ref>byteValue();
|
|
}
|
|
} |