get rid of the stream parsing that occurs in the Layer III decoder. BitStream.readFra...
[IRC.git] / Robust / src / Tests / BoundsFail3.java
1 public class BoundsFail3 {
2     int a;
3     public static void main(String str[]) {
4         int a[]=new int[10];
5         int b=a[-1];
6     }
7 }