]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.jni/overload.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.jni / overload.java
diff --git a/libjava/testsuite/libjava.jni/overload.java b/libjava/testsuite/libjava.jni/overload.java
deleted file mode 100644 (file)
index c2e6037..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Test to make sure overloaded functions with long names work.
-
-public class overload
-{
-  static
-  {
-    System.loadLibrary ("overload");
-  }
-
-  public static native int over (int one);
-  public static native int over (int one, int two);
-
-  public static void main (String[] args)
-  {
-    System.out.println (over (1));
-    System.out.println (over (1, 2));
-  }
-}