Name: ddT132432 Date: 08/09/2001
java version "1.3.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-b24)
Java HotSpot(TM) Client VM (build 1.3.1-b24, mixed mode)
Javac crashes when compiling the following valid Java program. I had earlier
submitted a bug with internal review id of 129650 in which Javac crashed with
an invalid program. It turns out that it is not important that the program be
invalid. Here is an example of a valid Java program that crashes Javac.
public class B{
static final int b=0;
static final int[]a={
b+0+0+0+0+0+0+0+0+0+0+ // This line starts with 'b'!
0+0+0+0+0+0+0+0+0+0+0+0+
0+0+0+0+0+0+0+0+0+0+0+0+0+
0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+
0+0+0+0+0+0+0+0+0+0+0+0+
0+0+0+0+0+0+0+0+0+0+0+0+
0+0+0+0+0+0+0+0 // There are eighty two zeros.
};
}
Javac does not crash if I use 81 zeros. It crashes with 82 zeros.
(Review ID: 129658)
======================================================================