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