import java.io.IOException; class LiftTest { public static void main(String[] args) { RectDomain<1> R = [0 : 10], I = [1 : 9]; double [1d] e = new double [R]; int j, l = 7; /* If using DCE, should eliminate j = 2 and lift j = k. Otherwise, no change. */ foreach (p in I) { j = 2; j = l; e[p] = j; } System.out.println("Done."); } }