]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/N19990317.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / N19990317.java
diff --git a/libjava/testsuite/libjava.compile/N19990317.java b/libjava/testsuite/libjava.compile/N19990317.java
deleted file mode 100644 (file)
index 669da3b..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*--------------------------------------------------------------------------*/
-/* 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");
-       }
-}