blob: ddf45a8a857f099c40dadaf9e2e6020d3dc9e7a7 [file] [log] [blame]
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();
}
}