]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/assignment.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / assignment.java
diff --git a/libjava/testsuite/libjava.compile/assignment.java b/libjava/testsuite/libjava.compile/assignment.java
deleted file mode 100644 (file)
index ec05f73..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// A definite assignment test.
-
-public class assignment
-{
-  public static Byte foo ()
-    {
-      Byte b;
-       
-      while (true) {
-       try {
-         b = Byte.decode ("42");
-         break;
-       } catch (NumberFormatException ignored) {}
-      }
-
-      return b;
-    }
-}
-