still some bugs...but stall site code generation is in
[IRC.git] / Robust / src / Tests / rcr / test.java
1 public class test {
2   int f;
3   public test() {}
4
5   public static void main(String xz[]) {
6     test[] r=new test[10];
7     for(int i=0;i<10;i++) {
8       r[i]=new test();r[i].f=0;
9     }
10
11     for (int z=0;z<100000;z++) {
12       for (int i=0;i<10;i++) {
13         test x=r[i];
14         sese foo {
15           int t=x.f;
16           x.f=t+1;
17         }
18       }
19     }
20     for(int i=0;i<10;i++)
21       System.out.println(r[i].f);
22   }
23 }
24
25 class foo {
26   foo() {
27   }
28   int x;
29 }