// Test exchange of private objects. // Relevant PR: PR781 // Expected result: FAIL class o8 { public static void main(String[] args) { PrivateRegion pr = new PrivateRegion(); o8 o = new (pr) o8(); o8[1d] single p = new o8[0 : Ti.numProcs() - 1]; p.exchange(o); System.out.println(Ti.thisProc() + ": " + p[Ti.numProcs() - 1].creator()); Ti.barrier(); } }