]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/PR5848.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / PR5848.java
diff --git a/libjava/testsuite/libjava.compile/PR5848.java b/libjava/testsuite/libjava.compile/PR5848.java
deleted file mode 100644 (file)
index a1270ff..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-import java.util.Vector;
-import java.util.Enumeration;
-
-public class PR5848
-{
-  private Vector data;
-  void sub()
-  {
-    long sz = 0;
-    for (Enumeration e = data.elements() ; e.hasMoreElements() ;) {
-      sz =+ ((byte[])e.nextElement()).length;
-    }
-  }
-}