blob: 1d5d5d362b3fc3c572feae7624609cf978431a5f [file] [log] [blame]
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;
import java.util.Properties;
class A_testLocalVarDecl_in {
public static void main(String[] args) {
Map table = new Properties();
Map map = table;
table.put(table,table);
table.containsKey(map);
map = new HashMap();
}
}