JDK-7020947 : an exception has occured in the compiler( 1.7 -ea)
  • Type: Bug
  • Component: tools
  • Sub-Component: javac
  • Affected Version: 7
  • Priority: P4
  • Status: Closed
  • Resolution: Cannot Reproduce
  • OS: windows_xp
  • CPU: x86
  • Submitted: 2011-02-21
  • Updated: 2012-09-06
  • Resolved: 2011-02-21
Related Reports
Relates :  
Relates :  
Description
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 ----------

Comments
EVALUATION This is another instance of the problems introduced by the fix of 6968793 and then fixed by 7014715 (in b130).
21-02-2011