OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [Invoke_1.java] - Rev 765

Compare with Previous | Blame | View Log

// 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");
	}
    }
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.