]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libjava/testsuite/libjava.compile/PR4766.java
Imported gcc-4.4.3
[msp430-gcc.git] / libjava / testsuite / libjava.compile / PR4766.java
diff --git a/libjava/testsuite/libjava.compile/PR4766.java b/libjava/testsuite/libjava.compile/PR4766.java
deleted file mode 100644 (file)
index 840f669..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Test that bytecode generation works even when `finally' clause
-// doesn't return normally.
-
-public class PR4766
-{
-  public static int myfunction()
-  {
-    try
-      {
-       System.out.println ("hi");
-      }
-    catch( Exception e )
-      {
-       e.printStackTrace();
-      }
-    finally
-      {
-       return 0;
-      }
-  }
-
-  public static void main (String[] args)
-  {
-  }
-}