FSF GCC merge 02/23/03
[official-gcc.git] / libjava / testsuite / libjava.lang / Invoke_1.java
blobbc4678301ce76f25554ae2df30cbf1589df0c6bd
1 // Test of failing method invocation.
3 public class Invoke_1
5 public void call_me ()
7 System.out.println ("no");
10 public static Invoke_1 get_i ()
12 return null;
15 public static void main (String[] args)
17 Invoke_1 i = get_i ();
18 try
20 i.call_me ();
22 catch (NullPointerException ok)
24 System.out.println ("ok");