changes
[IRC.git] / Robust / src / Tests / rcr / test.java
1 public class test {
2   foo f;
3   public test() {}
4
5   public static void main(String x[]) {
6     test r=new test();
7     r.f=new foo();
8     int z;
9     sese foo {
10       r.f.x=2;
11     }
12     sese bar {
13       z=r.f.x;
14     }
15     System.out.println(z);
16   }
17 }
18
19 class foo {
20   foo() {
21   }
22   int x;
23 }