Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libjava / testsuite / libjava.lang / Throw_1.java
blob4a0780aec063d7d91d3af0b1aceaebde6d4efd25
1 // Some tests of `throw'.
3 public class Throw_1
5 public static Throwable get ()
7 return null;
10 public static void main (String[] args)
12 Throwable t = get ();
13 try
15 throw t;
17 catch (NullPointerException y)
20 catch (Throwable x)
22 System.out.println ("no");