FULL PRODUCT VERSION :
java version "1.7.0-ea"
Java(TM) SE Runtime Environment (build 1.7.0-ea-b129)
Java HotSpot(TM) Client VM (build 21.0-b01, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
windows xp
A DESCRIPTION OF THE PROBLEM :
the program is not getting compiled!
i cant make a progress in the project!
the compiler is showing that it is compiler bug.
i hope u resolve! :-)
REPRODUCIBILITY :
This bug can be reproduced occasionally.
---------- BEGIN SOURCE ----------
import java.io.*;
class readaill
{
char c;
public readaill()throws Exception
{
try
{
System.out.print(" enter c to create file or f to unpack:");
c=new BufferedReader(new InputStreamReader(System.in)).getLine().getChar(0);
}
catch(Exception e)
{
}
}
public static void main(String c[])throws Exception
{
readaill r=new readaill();
}
}
---------- END SOURCE ----------