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