]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.lang/N19990310_3.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.lang / N19990310_3.java
diff --git a/libjava/testsuite/libjava.lang/N19990310_3.java b/libjava/testsuite/libjava.lang/N19990310_3.java
deleted file mode 100644 (file)
index b6dfac2..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-/*--------------------------------------------------------------------------*/
-/* Name       : N19990310_3                                                 */
-/*            :                                                             */
-/* Cause      : Evaluation order miss, when make integer array.             */
-/*            :                                                             */
-/* Message    : NG:[4]-->[1]                                                */
-/*--------------------------------------------------------------------------*/
-
-public class N19990310_3 {
-       public static void main(String[] args) {
-
-               int x = 4; 
-
-               int ary[][] = new int[x][x=1];
-
-               if ( ary.length == 4 ) {
-                       System.out.println("OK");
-               } else {
-                       System.out.println("NG:[4]-->[" +ary.length+ "]");
-               }
-       }
-}
-
-