N19990310_01.java 777 Bytes
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*--------------------------------------------------------------------------*/
/* name       : N19990310_01                                                */
/*            :                                                             */
/* cause      :  When compare string with connected strings, error.         */
/*            :                                                             */
/* Message    : Internal compiler error: program jc1 got                    */
/*            : fatal signal 11                                             */
/*--------------------------------------------------------------------------*/

public class N19990310_01 {
	public static void main(String[] args) {

		if ( "Hello" == ("Hel"+"lo") ) {
		}

		System.out.println("OK");
	}
}