OSDN Git Service

* config/i386/i386.md (*sinxf2): Rename to *sinxf2_i387.
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.compile / N19990310_01.java
1 /*--------------------------------------------------------------------------*/
2 /* name       : N19990310_01                                                */
3 /*            :                                                             */
4 /* cause      :  When compare string with connected strings, error.         */
5 /*            :                                                             */
6 /* Message    : Internal compiler error: program jc1 got                    */
7 /*            : fatal signal 11                                             */
8 /*--------------------------------------------------------------------------*/
9
10 public class N19990310_01 {
11         public static void main(String[] args) {
12
13                 if ( "Hello" == ("Hel"+"lo") ) {
14                 }
15
16                 System.out.println("OK");
17         }
18 }