OSDN Git Service

* config/i386/i386.md (*sinxf2): Rename to *sinxf2_i387.
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / libjava.compile / PR4766.java
1 // Test that bytecode generation works even when `finally' clause
2 // doesn't return normally.
3
4 public class PR4766
5 {
6   public static int myfunction()
7   {
8     try
9       {
10         System.out.println ("hi");
11       }
12     catch( Exception e )
13       {
14         e.printStackTrace();
15       }
16     finally
17       {
18         return 0;
19       }
20   }
21
22   public static void main (String[] args)
23   {
24   }
25 }