blob: 9d3f17b8a55535b18249538cb1a9a8d910693976 [file] [log] [blame]
import java.util.*;
class A_testLocalVarType_in {
public static void main(String[] args) {
Map table = new Properties();
Map map = table;
table.put(table,table);
table.containsKey(map);
}
}