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