blob: 669da3b824ab132baf6a3fd347a39c4d71f79c79 [file] [log] [blame]
/*--------------------------------------------------------------------------*/
/* Name : N19990317.java */
/* : */
/* Cause : When initialize valiable whose name is equal to method */
/* : return value, error. */
/* : */
/* Message : Internal compiler error: program jc1 got */
/* : fatal signal 11 */
/*--------------------------------------------------------------------------*/
class Point {}
public class N19990317 {
Point func() {
return null;
}
public static void main(String[] args) {
int Point = 2;
System.out.println("OK");
}
}