###@###.### (Thomas Hickey)
Here's an example of a bug we've run into a
> couple of times now. Alpha-2 javac gets a
> stack depth error when compiling the line
> that asigns to the 2-d byte array:
> class D {
> Q q;
> byte b2[][];
> }
>
> class Q {
> void init(D d){
> if (d.b2==null){
> d.b2 = new byte[3][3];
> }
> }
> }
Here's an example of a bug we've run into a
> couple of times now. Alpha-2 javac gets a
> stack depth error when compiling the line
> that asigns to the 2-d byte array:
> class D {
> Q q;
> byte b2[][];
> }
>
> class Q {
> void init(D d){
> if (d.b2==null){
> d.b2 = new byte[3][3];
> }
> }
> }