get rid of the stream parsing that occurs in the Layer III decoder. BitStream.readFra...
[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         System.printString("\n");
11     }
12     public static atomic int test(Integer y) {
13         return y.intValue();
14     }
15 }