]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.lang/err10.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.lang / err10.java
diff --git a/libjava/testsuite/libjava.lang/err10.java b/libjava/testsuite/libjava.lang/err10.java
deleted file mode 100644 (file)
index afdb4e0..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*--------------------------------------------------------------------------*/
-/* File name  : err10.java                                                  */
-/*            :                                                             */
-/* Cause      : Operator >>> doesn't work correctly when value is negative. */
-/*            :                                                             */
-/* Message    : NG : a = -2                                                 */
-/*--------------------------------------------------------------------------*/
-
-public class err10 {
-  public static void main(String[] args) {
-    int a = -3;
-
-    a = a>>>1;
-
-    if ( a == 2147483646 ) {
-      System.out.println("OK"); 
-    } else {
-      System.out.println("NG:[2147483646]-->[" +a+ "]"); 
-    }
-
-  }
-}
-