Try to compile this:
class test {
public static void main(String argv[]) {
java.util.HashtableEntry e = new java.util.HashtableEntry();
System.out.println(e.hash);
}
}
It should not allow the new java.util.HashtableEntry.
class test {
public static void main(String argv[]) {
java.util.HashtableEntry e = new java.util.HashtableEntry();
System.out.println(e.hash);
}
}
It should not allow the new java.util.HashtableEntry.