blob: f22baf62e3d058f7b2540e081c2a19ce0633fd78 [file] [log] [blame]
class C {
{
Object[] array;
<selection>for (int i = 0; i < array.length; i++) {
System.out.println(array[i]);
}</selection>
Object[] array1;
for (int j = 0; j < array1.length; j++) {
System.out.println(array1[j]);
}
}
}