more changes
[IRC.git] / Robust / src / Tests / Atomic.java
1 public class Atomic {
2     int a;
3     public static void main(String[] st) {
4         Integer z;
5         atomic {
6             z=global new Integer(3);
7         }
8         int q=test(z);
9         System.printInt(q);
10     }
11     public static atomic int test(Integer y) {
12         return y.intValue();
13     }
14 }