another bad case
authorbdemsky <bdemsky>
Sat, 23 Oct 2010 08:41:28 +0000 (08:41 +0000)
committerbdemsky <bdemsky>
Sat, 23 Oct 2010 08:41:28 +0000 (08:41 +0000)
Robust/src/Tests/rcr/test.java

index f546912bf0900294482fe1a8256254038022b509..9e816e812eb7dccb8864ba44c8cf09ed01dd10bf 100644 (file)
@@ -1,24 +1,24 @@
 public class test {
-  int f;
+  foo f;
   public test() {}
 
   public static void main(String xz[]) {
     test[] r=new test[10];
     for(int i=0;i<10;i++) {
-      r[i]=new test();r[i].f=0;
+      r[i]=new test();r[i].f=new foo();
     }
 
     for (int z=0;z<100000;z++) {
       for (int i=0;i<10;i++) {
        test x=r[i];
        sese foo {
-         int t=x.f;
-         x.f=t+1;
+         int t=x.f.x;
+         x.f.x=t+1;
        }
       }
     }
     for(int i=0;i<10;i++)
-      System.out.println(r[i].f);
+      System.out.println(r[i].f.x);
   }
 }