blob: d24d1b5983cecfb023d6fde7d47dfa9b641e0ce2 [file] [log] [blame]
import java.util.Hashtable;
class A_testUpdateNotPossible_in {
public void foo {
Hashtable h1 = new Hashtable();
Hashtable h2 = new Hashtable();
h1 = h2;
h2 = h1;
}
}