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); } }