]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.lang/Invoke_1.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.lang / Invoke_1.java
diff --git a/libjava/testsuite/libjava.lang/Invoke_1.java b/libjava/testsuite/libjava.lang/Invoke_1.java
deleted file mode 100644 (file)
index bc46783..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-// Test of failing method invocation.
-
-public class Invoke_1
-{
-  public void call_me ()
-    {
-      System.out.println ("no");
-    }
-
-  public static Invoke_1 get_i ()
-    {
-      return null;
-    }
-
-  public static void main (String[] args)
-    {
-      Invoke_1 i = get_i ();
-      try
-       {
-         i.call_me ();
-       }
-      catch (NullPointerException ok)
-       {
-         System.out.println ("ok");
-       }
-    }
-}